accounts-index

Accounts index evm contract tooling with permissioned writes
Log | Files | Refs

commit ebbbd9f55f9adb46d0c2696f3b1f119364c89bfb
parent b8250373dfc300e642bd61791c246b3307ac7c55
Author: nolash <dev@holbrook.no>
Date:   Tue, 12 Jan 2021 00:04:36 +0100

Add optional wait for block at end

Diffstat:
Mpython/eth_accounts_index/runnable/deploy.py | 3+++
Mpython/setup.cfg | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/python/eth_accounts_index/runnable/deploy.py b/python/eth_accounts_index/runnable/deploy.py @@ -125,6 +125,9 @@ def main(): ], ) + if block_last or block_all: + helper.wait_for() + print(address) diff --git a/python/setup.cfg b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-accounts-index -version = 0.0.10a1 +version = 0.0.10a2 description = Accounts index evm contract tooling with permissioned writes author = Louis Holbrook author_email = dev@holbrook.no