Fix typo in entry point package specs

This commit is contained in:
nolash 2021-03-24 10:28:48 +01:00
parent 8b2fe72232
commit 17c2e97271
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 3 additions and 4 deletions

View File

@ -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')

Binary file not shown.

View File

@ -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