We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab6995 commit fa24247Copy full SHA for fa24247
test/functional/feature_blockfilterindex_prune.py
@@ -19,7 +19,10 @@ def run_test(self):
19
# test basic pruning compatibility & filter access of pruned blocks
20
self.log.info("check if we can access a blockfilter when pruning is enabled but no blocks are actually pruned")
21
assert len(self.nodes[1].getblockfilter(self.nodes[1].getbestblockhash())['filter']) > 0
22
- self.nodes[1].generate(500)
+ # Mine two batches of blocks to avoid hitting NODE_NETWORK_LIMITED_MIN_BLOCKS disconnection
23
+ self.nodes[1].generate(250)
24
+ self.sync_all()
25
26
self.sync_all()
27
self.log.info("prune some blocks")
28
pruneheight = self.nodes[1].pruneblockchain(400)
0 commit comments