Skip to content

Commit 4412ced

Browse files
test: Fix feature_index_prune.py to work with new blockfilterindex defaults
Node 1 was configured with only -coinstatsindex=1, but with the new defaults it was also getting -blockfilterindex=basic enabled. The test expects node 1 to only have coinstatsindex, so we need to explicitly disable blockfilterindex and peerblockfilters. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e6e9ff8 commit 4412ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_index_prune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def set_test_params(self):
2222
self.num_nodes = 4
2323
self.extra_args = [
2424
["-fastprune", "-prune=1", "-blockfilterindex=1"] + DEPLOYMENT_ARGS,
25-
["-fastprune", "-prune=1", "-coinstatsindex=1"] + DEPLOYMENT_ARGS,
25+
["-fastprune", "-prune=1", "-coinstatsindex=1", "-blockfilterindex=0", "-peerblockfilters=0"] + DEPLOYMENT_ARGS,
2626
["-fastprune", "-prune=1", "-blockfilterindex=1", "-coinstatsindex=1"] + DEPLOYMENT_ARGS,
2727
[] + DEPLOYMENT_ARGS,
2828
]

0 commit comments

Comments
 (0)