Skip to content

Commit efd4cdb

Browse files
author
MarcoFalke
committed
Merge #20456: test: Fix intermittent issue in mempool_compatibility
fa05d19 test: Fix intermittent issue in mempool_compatibility (MarcoFalke) Pull request description: Fixes https://cirrus-ci.com/task/5141306890518528?command=ci#L6076 The version is too old to understand getmempoolinfo()[loaded], so it is never called when starting (See https://cirrus-ci.com/task/5141306890518528?command=ci#L5541) ACKs for top commit: achow101: ACK fa05d19 Tree-SHA512: e912d5dff6236d2d4ac608f9f3b3e255cc2b611f36d79bfe4e2a940709833a947c682d7703327887e1753eab30b95eb2615d7e2c21ce4bca4f089e717cbb51c4
2 parents ca4a784 + fa05d19 commit efd4cdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional/mempool_compatibility.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def skip_test_if_missing_module(self):
2929

3030
def setup_network(self):
3131
self.add_nodes(self.num_nodes, versions=[
32-
150200, # oldest version supported by the test framework
32+
190100, # oldest version with getmempoolinfo.loaded (used to avoid intermittent issues)
3333
None,
3434
])
3535
self.start_nodes()
@@ -72,5 +72,6 @@ def run_test(self):
7272
assert old_tx_hash in old_node.getrawmempool()
7373
assert unbroadcasted_tx_hash in old_node.getrawmempool()
7474

75+
7576
if __name__ == "__main__":
7677
MempoolCompatibilityTest().main()

0 commit comments

Comments
 (0)