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():
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 )
You can’t perform that action at this time.
0 commit comments