diff options
author | Micky Yun Chan <michan@redhat.com> | 2019-12-18 14:54:25 +0800 |
---|---|---|
committer | Micky Yun Chan <michan@redhat.com> | 2020-01-25 15:51:35 +0800 |
commit | 2d23082cbe4641175d752a5969f67cdadf1afcea (patch) | |
tree | 99c97bfda49497de34cbda28efd44cd1ae606170 /test/functional/mempool_reorg.py | |
parent | 6fef85bfa3cd7f76e83b8b57f9e4acd63eb664ec (diff) |
bump test timeouts so that functional tests run in valgrind
Diffstat (limited to 'test/functional/mempool_reorg.py')
-rwxr-xr-x | test/functional/mempool_reorg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/mempool_reorg.py b/test/functional/mempool_reorg.py index 123f0b4c28..3b148d5cf0 100755 --- a/test/functional/mempool_reorg.py +++ b/test/functional/mempool_reorg.py @@ -76,7 +76,7 @@ class MempoolCoinbaseTest(BitcoinTestFramework): spend_101_id = self.nodes[0].sendrawtransaction(spend_101_raw) spend_102_1_id = self.nodes[0].sendrawtransaction(spend_102_1_raw) - self.sync_all() + self.sync_all(timeout=360) assert_equal(set(self.nodes[0].getrawmempool()), {spend_101_id, spend_102_1_id, timelock_tx_id}) @@ -91,7 +91,7 @@ class MempoolCoinbaseTest(BitcoinTestFramework): for node in self.nodes: node.invalidateblock(new_blocks[0]) - self.sync_all() + self.sync_all(timeout=360) # mempool should be empty. assert_equal(set(self.nodes[0].getrawmempool()), set()) |