From ebbbd9f55f9adb46d0c2696f3b1f119364c89bfb Mon Sep 17 00:00:00 2001 From: nolash Date: Tue, 12 Jan 2021 00:04:36 +0100 Subject: [PATCH] Add optional wait for block at end --- python/eth_accounts_index/runnable/deploy.py | 3 +++ python/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 index 7019eb0..2e560a2 100644 --- 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 index d609ab6..5a948ae 100644 --- 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