rehabilitate runnable

This commit is contained in:
nolash 2021-04-30 22:03:48 +02:00
parent a12cdb0ef3
commit c60a91b77b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
4 changed files with 4 additions and 4 deletions

View File

@ -57,8 +57,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

@ -25,7 +25,7 @@ from chainlib.eth.constant import ZERO_CONTENT
from chainlib.error import JSONRPCException
# local imports
from eth_contract_registry import Registry
from eth_contract_registry.registry import ContractRegistry
logging.basicConfig(level=logging.WARNING)
logg = logging.getLogger()
@ -88,7 +88,7 @@ def ls(ifc, fmt=default_format, w=sys.stdout):
def main():
c = Registry(chain_spec)
c = ContractRegistry(chain_spec)
if identifier != None:
element(c, identifier, fmt=fmt, w=sys.stdout)
else:

View File

@ -60,8 +60,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:

Binary file not shown.