0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

Require legacy wallet for wallet_upgradewallet.py

This commit is contained in:
Andrew Chow 2020-11-06 15:34:06 -05:00
parent b1b679e0ab
commit fbaea7bfe4
2 changed files with 2 additions and 1 deletions

View file

@ -225,7 +225,7 @@ BASE_SCRIPTS = [
'wallet_import_rescan.py --legacy-wallet', 'wallet_import_rescan.py --legacy-wallet',
'wallet_import_with_label.py --legacy-wallet', 'wallet_import_with_label.py --legacy-wallet',
'wallet_importdescriptors.py --descriptors', 'wallet_importdescriptors.py --descriptors',
'wallet_upgradewallet.py', 'wallet_upgradewallet.py --legacy-wallet',
'rpc_bind.py --ipv4', 'rpc_bind.py --ipv4',
'rpc_bind.py --ipv6', 'rpc_bind.py --ipv6',
'rpc_bind.py --nonloopback', 'rpc_bind.py --nonloopback',

View file

@ -57,6 +57,7 @@ class UpgradeWalletTest(BitcoinTestFramework):
def skip_test_if_missing_module(self): def skip_test_if_missing_module(self):
self.skip_if_no_wallet() self.skip_if_no_wallet()
self.skip_if_no_bdb()
self.skip_if_no_previous_releases() self.skip_if_no_previous_releases()
def setup_network(self): def setup_network(self):