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 fa7dde1 commit faf8f61Copy full SHA for faf8f61
test/functional/tool_wallet.py
@@ -348,7 +348,8 @@ def test_dump_createfromdump(self):
348
self.log.info('Checking createfromdump')
349
self.do_tool_createfromdump("load", "wallet.dump")
350
self.do_tool_createfromdump("load-bdb", "wallet.dump", "bdb")
351
- self.do_tool_createfromdump("load-sqlite", "wallet.dump", "sqlite")
+ if self.is_sqlite_compiled():
352
+ self.do_tool_createfromdump("load-sqlite", "wallet.dump", "sqlite")
353
354
self.log.info('Checking createfromdump handling of magic and versions')
355
bad_ver_wallet_dump = os.path.join(self.nodes[0].datadir, "wallet-bad_ver1.dump")
0 commit comments