From 7239ddb7cec38ab5a8aca93c18fb9efa6376421d Mon Sep 17 00:00:00 2001 From: brunoerg Date: Mon, 2 Dec 2024 18:39:35 -0300 Subject: test: make sure node has all transactions --- test/functional/p2p_compactblocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/p2p_compactblocks.py b/test/functional/p2p_compactblocks.py index 5a56b8d3b1..ca36b2fbc0 100755 --- a/test/functional/p2p_compactblocks.py +++ b/test/functional/p2p_compactblocks.py @@ -733,7 +733,7 @@ class CompactBlocksTest(BitcoinTestFramework): # Now send the compact block with all transactions prefilled, and # verify that we don't get disconnected. comp_block = HeaderAndShortIDs() - comp_block.initialize_from_block(block, prefill_list=[0, 1, 2, 3, 4], use_witness=True) + comp_block.initialize_from_block(block, prefill_list=list(range(len(block.vtx))), use_witness=True) msg = msg_cmpctblock(comp_block.to_p2p()) test_node.send_and_ping(msg) -- cgit v1.2.3