From e621913f746fbcf1f00058f78e8a20ac38efe1eb Mon Sep 17 00:00:00 2001 From: lash Date: Thu, 12 May 2022 16:13:25 +0000 Subject: [PATCH] Implement 'raw' cli tool on settings module --- chainlib/eth/runnable/wait.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainlib/eth/runnable/wait.py b/chainlib/eth/runnable/wait.py index ab80481..4b16d94 100644 --- a/chainlib/eth/runnable/wait.py +++ b/chainlib/eth/runnable/wait.py @@ -115,7 +115,7 @@ def main(): for hsh in hashes_ready: logg.debug('processing transaction hash {}'.format(hsh)) try: - r = conn.wait(hsh) + r = settings.get('CONN').wait(hsh) except RevertEthException: if config.get('_IGNORE_ALL') or hsh in hashes_ignore: logg.info('ignoring revert in transaction hash {}'.format(hsh))