File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ def check_clean_start():
64
64
'addcon thread start' ,
65
65
'loadblk thread start' ,
66
66
'txindex thread start' ,
67
+ 'block filter index thread start' ,
68
+ 'coinstatsindex thread start' ,
67
69
'msghand thread start' ,
68
70
'net thread start' ,
69
71
'addcon thread start' ,
@@ -74,7 +76,7 @@ def check_clean_start():
74
76
for terminate_line in lines_to_terminate_after :
75
77
self .log .info (f"Starting node and will exit after line '{ terminate_line } '" )
76
78
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' ])
78
80
self .log .debug ("Terminating node after terminate line was found" )
79
81
sigterm_node ()
80
82
@@ -109,7 +111,7 @@ def check_clean_start():
109
111
# investigate doing this later.
110
112
111
113
node .assert_start_raises_init_error (
112
- extra_args = ['-txindex=1' ],
114
+ extra_args = ['-txindex=1' , '-blockfilterindex=1' , '-coinstatsindex=1' ],
113
115
expected_msg = err_fragment ,
114
116
match = ErrorMatch .PARTIAL_REGEX ,
115
117
)
You can’t perform that action at this time.
0 commit comments