We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47d3243 commit 388053eCopy full SHA for 388053e
test/functional/tool_wallet.py
@@ -261,9 +261,12 @@ def run_test(self):
261
# Warning: The following tests are order-dependent.
262
self.test_tool_wallet_info()
263
self.test_tool_wallet_info_after_transaction()
264
- self.test_tool_wallet_create_on_existing_wallet()
265
- self.test_getwalletinfo_on_different_wallet()
266
- self.test_salvage()
+ if not self.options.descriptors:
+ # TODO: Wallet tool needs more create options at which point these can be enabled.
+ self.test_tool_wallet_create_on_existing_wallet()
267
+ self.test_getwalletinfo_on_different_wallet()
268
+ # Salvage is a legacy wallet only thing
269
+ self.test_salvage()
270
271
if __name__ == '__main__':
272
ToolWalletTest().main()
0 commit comments