commit b8250373dfc300e642bd61791c246b3307ac7c55
parent b77448a0f10567d313b1a1722d605cb14c0d87a6
Author: nolash <dev@holbrook.no>
Date: Sun, 10 Jan 2021 22:35:25 +0100
Rename executable scripts in setup
Diffstat:
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/python/CHANGELOG b/python/CHANGELOG
@@ -1,6 +1,7 @@
- 0.0.10-unreleased
- Implement external signer
- Standardize cli arg flags
+ - Rename entry point executable names in setup
- 0.0.9
- Fix wrong abi path in registry.py
- 0.0.8
diff --git a/python/eth_accounts_index/runnable/deploy.py b/python/eth_accounts_index/runnable/deploy.py
@@ -94,7 +94,7 @@ def main():
logg.debug('adding sender to write list')
(tx_hash, rcpt) = helper.sign_and_send(
[
- c.functions.addWriter(signer_address).buildTransaction
+ c.functions.addWriter(signer_address).buildTransaction,
],
force_wait=True,
)
@@ -121,7 +121,7 @@ def main():
logg.debug('deleting sender for write list')
(tx_hash, rcpt) = helper.sign_and_send(
[
- c.functions.deleteWriter(signer_address).buildTransaction
+ c.functions.deleteWriter(signer_address).buildTransaction,
],
)
diff --git a/python/setup.cfg b/python/setup.cfg
@@ -48,5 +48,5 @@ testing =
[options.entry_points]
console_scripts =
- accounts-index-deploy = eth_accounts_index.runnable.deploy:main
- accounts-index-add = eth_accounts_index.runnable.add:main
+ eth-accounts-index-deploy = eth_accounts_index.runnable.deploy:main
+ eth-accounts-index-add = eth_accounts_index.runnable.add:main