add sleep after each execution
This commit is contained in:
parent
c5ff6f3bf1
commit
1bbf26ceb1
6
parse.py
6
parse.py
@ -311,6 +311,7 @@ class Router:
|
|||||||
pi = Pipe(False)
|
pi = Pipe(False)
|
||||||
po = Process(target=self.__wrap, args=(cmd.i, fn, cmd,))
|
po = Process(target=self.__wrap, args=(cmd.i, fn, cmd,))
|
||||||
self.__r[cmd.i] = (po, pi,)
|
self.__r[cmd.i] = (po, pi,)
|
||||||
|
time.sleep(5)
|
||||||
po.start()
|
po.start()
|
||||||
|
|
||||||
|
|
||||||
@ -373,7 +374,6 @@ def load_gas(address,nonce):
|
|||||||
command = (
|
command = (
|
||||||
f'cast send {address} '
|
f'cast send {address} '
|
||||||
f'--value {gas_topup} '
|
f'--value {gas_topup} '
|
||||||
f'--nonce {nonce} '
|
|
||||||
f'--private-key {master_private_key} '
|
f'--private-key {master_private_key} '
|
||||||
f'--rpc-url {rpc} '
|
f'--rpc-url {rpc} '
|
||||||
f' --json '
|
f' --json '
|
||||||
@ -381,7 +381,7 @@ def load_gas(address,nonce):
|
|||||||
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
||||||
if result.returncode != 0:
|
if result.returncode != 0:
|
||||||
raise subprocess.CalledProcessError(result.returncode, command, output=result.stdout, stderr=result.stderr)
|
raise subprocess.CalledProcessError(result.returncode, command, output=result.stdout, stderr=result.stderr)
|
||||||
|
|
||||||
message = f"Added some gas to {address}"
|
message = f"Added some gas to {address}"
|
||||||
printMessage(message)
|
printMessage(message)
|
||||||
|
|
||||||
@ -421,7 +421,7 @@ def key_create_handler(cmd):
|
|||||||
else:
|
else:
|
||||||
private_key = cmd.k
|
private_key = cmd.k
|
||||||
address = w3.eth.account.from_key(private_key).address
|
address = w3.eth.account.from_key(private_key).address
|
||||||
|
time.sleep(5)
|
||||||
load_gas(address,nonce)
|
load_gas(address,nonce)
|
||||||
store_key_in_keystore(private_key, key_name, address)
|
store_key_in_keystore(private_key, key_name, address)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user