From 47446307d70211bee8a8d9c27f41b56a9f655c5d Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Wed, 31 Jan 2024 07:27:20 -0600 Subject: [PATCH] GH-1510 trace_plugin_test.py run under instant-finality --- tests/trace_plugin_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/trace_plugin_test.py b/tests/trace_plugin_test.py index 1bfe110c60..baa4472112 100755 --- a/tests/trace_plugin_test.py +++ b/tests/trace_plugin_test.py @@ -22,7 +22,7 @@ def startEnv(self) : account_names = ["alice", "bob", "charlie"] abs_path = os.path.abspath(os.getcwd() + '/unittests/contracts/eosio.token/eosio.token.abi') traceNodeosArgs = " --verbose-http-errors --trace-rpc-abi eosio.token=" + abs_path - self.cluster.launch(totalNodes=2, extraNodeosArgs=traceNodeosArgs) + self.cluster.launch(totalNodes=2, activateIF=True, extraNodeosArgs=traceNodeosArgs) self.walletMgr.launch() testWalletName="testwallet" testWallet=self.walletMgr.create(testWalletName, [self.cluster.eosioAccount, self.cluster.defproduceraAccount])