Update url

This commit is contained in:
nolash
2021-05-02 17:59:37 +02:00
parent 2343e384b8
commit a06bdee719
7 changed files with 10 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ from chainlib.eth.gas import (
)
from chainlib.eth.connection import EthHTTPConnection
from chainlib.eth.tx import receipt
from chainlib.eth.erc20 import ERC20
from eth_erc20 import ERC20
# local imports
from eth_token_index import TokenUniqueSymbolIndex

View File

@@ -55,8 +55,8 @@ if args.vv:
elif args.v:
logg.setLevel(logging.INFO)
block_last = args.w
block_all = args.ww
block_last = args.w or block_all
passphrase_env = 'ETH_PASSPHRASE'
if args.env_prefix != None:

View File

@@ -18,7 +18,7 @@ from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer
from crypto_dev_signer.keystore.dict import DictKeystore
from chainlib.chain import ChainSpec
from chainlib.eth.connection import EthHTTPConnection
from chainlib.eth.erc20 import ERC20
from eth_erc20 import ERC20
# local imports
from eth_token_index import TokenUniqueSymbolIndex