File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -96,9 +96,6 @@ def set_test_params(self):
96
96
]
97
97
self .rpc_timeout = 120
98
98
99
- def skip_test_if_missing_module (self ):
100
- self .skip_if_no_wallet ()
101
-
102
99
def setup_network (self ):
103
100
self .setup_nodes ()
104
101
@@ -114,7 +111,8 @@ def setup_network(self):
114
111
def setup_nodes (self ):
115
112
self .add_nodes (self .num_nodes , self .extra_args )
116
113
self .start_nodes ()
117
- self .import_deterministic_coinbase_privkeys ()
114
+ if self .is_wallet_compiled ():
115
+ self .import_deterministic_coinbase_privkeys ()
118
116
119
117
def create_big_chain (self ):
120
118
# Start by creating some coinbases we can spend later
@@ -474,8 +472,9 @@ def run_test(self):
474
472
self .log .info ("Test manual pruning with timestamps" )
475
473
self .manual_test (4 , use_timestamp = True )
476
474
477
- self .log .info ("Test wallet re-scan" )
478
- self .wallet_test ()
475
+ if self .is_wallet_compiled ():
476
+ self .log .info ("Test wallet re-scan" )
477
+ self .wallet_test ()
479
478
480
479
self .log .info ("Test invalid pruning command line options" )
481
480
self .test_invalid_command_line_options ()
You can’t perform that action at this time.
0 commit comments