mirror of https://github.com/nucypher/nucypher.git
add static nodes on every geth runtime
parent
1b104cea9f
commit
efee3d60e9
|
@ -179,4 +179,9 @@ class NuCypherGethDevnetProcess(NuCypherGethProcess):
|
|||
return checksum_address
|
||||
|
||||
def start(self, *args, **kwargs):
|
||||
# FIXME: Quick and Dirty
|
||||
|
||||
# Write static nodes file to data dir
|
||||
bootnodes_filepath = os.path.join(DEPLOY_DIR, 'static-nodes.json')
|
||||
shutil.copy(bootnodes_filepath, os.path.join(self.data_dir))
|
||||
super().start()
|
||||
|
|
Loading…
Reference in New Issue