From a49aaf686418fa607347f0a91b6e047be0b21ec9 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Wed, 11 Oct 2023 09:39:15 -0500 Subject: [PATCH] GH-1501 Need a larger timeout since 5 seconds was too small allowing set contract to work but not seeing it yet. --- tests/TestHarness/transactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestHarness/transactions.py b/tests/TestHarness/transactions.py index 5950a8b42e..e755a10e98 100644 --- a/tests/TestHarness/transactions.py +++ b/tests/TestHarness/transactions.py @@ -203,7 +203,7 @@ def publishContract(self, account, contractDir, wasmFile, abiFile, waitForTransB if not waitForTransBlock: return trans transId=NodeosQueries.getTransId(trans) - if self.waitForTransactionInBlock(transId, timeout=5, exitOnError=False): + if self.waitForTransactionInBlock(transId, timeout=30, exitOnError=False): break return trans