Skip to content

Commit bfcd60f

Browse files
committed
test: activate all index types in feature_init.py
1 parent 0243907 commit bfcd60f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/functional/feature_init.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ def check_clean_start():
6464
'addcon thread start',
6565
'loadblk thread start',
6666
'txindex thread start',
67+
'block filter index thread start',
68+
'coinstatsindex thread start',
6769
'msghand thread start',
6870
'net thread start',
6971
'addcon thread start',
@@ -74,7 +76,7 @@ def check_clean_start():
7476
for terminate_line in lines_to_terminate_after:
7577
self.log.info(f"Starting node and will exit after line '{terminate_line}'")
7678
with node.wait_for_debug_log([terminate_line], ignore_case=True):
77-
node.start(extra_args=['-txindex=1'])
79+
node.start(extra_args=['-txindex=1', '-blockfilterindex=1', '-coinstatsindex=1'])
7880
self.log.debug("Terminating node after terminate line was found")
7981
sigterm_node()
8082

@@ -109,7 +111,7 @@ def check_clean_start():
109111
# investigate doing this later.
110112

111113
node.assert_start_raises_init_error(
112-
extra_args=['-txindex=1'],
114+
extra_args=['-txindex=1', '-blockfilterindex=1', '-coinstatsindex=1'],
113115
expected_msg=err_fragment,
114116
match=ErrorMatch.PARTIAL_REGEX,
115117
)

0 commit comments

Comments
 (0)