aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_migration.py
diff options
context:
space:
mode:
authorAva Chow <github@achow101.com>2024-02-01 18:01:34 -0500
committerAva Chow <github@achow101.com>2024-02-01 18:13:02 -0500
commit3904123da954f9ebd905de4129aec9f9bab9efc7 (patch)
tree4a52f4f7643560ab7efc80d51df296a2edfc50f9 /test/functional/wallet_migration.py
parent072d506240f6c39387b2edd4421818cc914c0912 (diff)
downloadbitcoin-3904123da954f9ebd905de4129aec9f9bab9efc7.tar.xz
tests: Test that descriptors flag is set for migrated blank wallets
Diffstat (limited to 'test/functional/wallet_migration.py')
-rwxr-xr-xtest/functional/wallet_migration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_migration.py b/test/functional/wallet_migration.py
index 20e92dbef7..b466d3c545 100755
--- a/test/functional/wallet_migration.py
+++ b/test/functional/wallet_migration.py
@@ -881,7 +881,7 @@ class WalletMigrationTest(BitcoinTestFramework):
assert_equal(wallet.getwalletinfo()["blank"], True)
wallet.migratewallet()
assert_equal(wallet.getwalletinfo()["blank"], True)
-
+ assert_equal(wallet.getwalletinfo()["descriptors"], True)
def test_avoidreuse(self):
self.log.info("Test that avoidreuse persists after migration")