File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/functional/test_framework Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -214,11 +214,11 @@ def parse_args(self):
214
214
self .options .descriptors = None
215
215
elif self .options .descriptors is None :
216
216
# Some wallet is either required or optionally used by the test.
217
- # Prefer BDB unless it isn't available
218
- if self .is_bdb_compiled ():
219
- self .options .descriptors = False
220
- elif self .is_sqlite_compiled ():
217
+ # Prefer SQLite unless it isn't available
218
+ if self .is_sqlite_compiled ():
221
219
self .options .descriptors = True
220
+ elif self .is_bdb_compiled ():
221
+ self .options .descriptors = False
222
222
else :
223
223
# If neither are compiled, tests requiring a wallet will be skipped and the value of self.options.descriptors won't matter
224
224
# It still needs to exist and be None in order for tests to work however.
You can’t perform that action at this time.
0 commit comments