Rename executable scripts in setup

This commit is contained in:
nolash 2021-01-10 22:35:25 +01:00
parent b77448a0f1
commit b8250373df
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
- 0.0.10-unreleased - 0.0.10-unreleased
- Implement external signer - Implement external signer
- Standardize cli arg flags - Standardize cli arg flags
- Rename entry point executable names in setup
- 0.0.9 - 0.0.9
- Fix wrong abi path in registry.py - Fix wrong abi path in registry.py
- 0.0.8 - 0.0.8

View File

@ -94,7 +94,7 @@ def main():
logg.debug('adding sender to write list') logg.debug('adding sender to write list')
(tx_hash, rcpt) = helper.sign_and_send( (tx_hash, rcpt) = helper.sign_and_send(
[ [
c.functions.addWriter(signer_address).buildTransaction c.functions.addWriter(signer_address).buildTransaction,
], ],
force_wait=True, force_wait=True,
) )
@ -121,7 +121,7 @@ def main():
logg.debug('deleting sender for write list') logg.debug('deleting sender for write list')
(tx_hash, rcpt) = helper.sign_and_send( (tx_hash, rcpt) = helper.sign_and_send(
[ [
c.functions.deleteWriter(signer_address).buildTransaction c.functions.deleteWriter(signer_address).buildTransaction,
], ],
) )

View File

@ -48,5 +48,5 @@ testing =
[options.entry_points] [options.entry_points]
console_scripts = console_scripts =
accounts-index-deploy = eth_accounts_index.runnable.deploy:main eth-accounts-index-deploy = eth_accounts_index.runnable.deploy:main
accounts-index-add = eth_accounts_index.runnable.add:main eth-accounts-index-add = eth_accounts_index.runnable.add:main