commit 17c2e972712448d47adda29e20cf92da89d3f4ed
parent 8b2fe722320bfe9962eae93aa183ef4339858056
Author: nolash <dev@holbrook.no>
Date: Wed, 24 Mar 2021 10:28:48 +0100
Fix typo in entry point package specs
Diffstat:
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/python/eth_contract_registry/runnable/set.py b/python/eth_contract_registry/runnable/set.py
@@ -38,7 +38,6 @@ argparser.add_argument('-w', action='store_true', help='Wait for the last transa
argparser.add_argument('-ww', action='store_true', help='Wait for every transaction to be confirmed')
argparser.add_argument('-i', '--chain-spec', dest='i', type=str, default='Ethereum:1', help='Chain specification string')
argparser.add_argument('-y', '--key-file', dest='y', type=str, help='Ethereum keystore file to use for signing')
-argparser.add_argument('-a', '--contract-address', dest='a', type=str, help='Alias for -r')
argparser.add_argument('-r', '--registry', dest='r', type=str, help='Contract registry address')
argparser.add_argument('-v', action='store_true', help='Be verbose')
argparser.add_argument('-vv', action='store_true', help='Be more verbose')
diff --git a/python/gmon.out b/python/gmon.out
Binary files differ.
diff --git a/python/setup.cfg b/python/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = eth-contract-registry
-version = 0.5.4a1
+version = 0.5.4a3
description = Ethereum Smart Contract key-value registry
author = Louis Holbrook
author_email = dev@holbrook.no
@@ -35,6 +35,6 @@ packages =
[options.entry_points]
console_scripts =
eth-contract-registry-deploy = eth_contract_registry.runnable.deploy:main
- eth-contract-registry-set = eth_conrtact_registry.runnable.set:main
- eth-contract-registry-seal = eth_contract_registry.runnable.seal:main
+ eth-contract-registry-set = eth_contract_registry.runnable.set:main
+ #eth-contract-registry-seal = eth_contract_registry.runnable.seal:main
eth-contract-registry-list = eth_contract_registry.runnable.list:main