Beispiel #1
0
 def start(self, timeout: int = 30, extra_delay: int = 1):
     if not self.is_running:
         self.LOG.info("STARTING GETH DEV PROCESS NOW")
         BaseGethProcess.start(self)  # <--- START GETH
         time.sleep(extra_delay)  # give it a second
         self.wait_for_ipc(timeout=timeout)
     else:
         self.LOG.info("RECONNECTING TO GETH DEV PROCESS")
Beispiel #2
0
 def start(self, timeout: int = 30, extra_delay: int = 1):
     self.LOG.info("STARTING GETH DEV NOW")
     BaseGethProcess.start(self)  # <--- START GETH
     time.sleep(extra_delay)  # give it a second
     self.wait_for_ipc(timeout=timeout)