Add wait for hashes script

This commit is contained in:
nolash
2021-10-19 19:40:31 +02:00
parent 6cadad372f
commit 8c23535ffe
4 changed files with 120 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
# external imports
from funga.eth.signer import EIP155Signer
from funga.eth.keystore.dict import DictKeystore
from chainlib.cli import Wallet as BaseWallet
# local imports
@@ -13,7 +14,7 @@ class Wallet(BaseWallet):
:type checksummer: Implementation of chainlib.eth.address.AddressChecksum
"""
def __init__(self, checksummer=AddressChecksum):
super(Wallet, self).__init__(EIP155Signer, checksummer=checksummer)
super(Wallet, self).__init__(EIP155Signer, checksummer=checksummer, keystore=DictKeystore())