diff --git a/python/CHANGELOG b/python/CHANGELOG index cd447ad..cd7ec1d 100644 --- 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 index d440916..7019eb0 100644 --- 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 index 900c87c..d609ab6 100644 --- 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