diff options
author | Ava Chow <github@achow101.com> | 2024-02-01 18:01:34 -0500 |
---|---|---|
committer | Ava Chow <github@achow101.com> | 2024-02-01 18:13:02 -0500 |
commit | 3904123da954f9ebd905de4129aec9f9bab9efc7 (patch) | |
tree | 4a52f4f7643560ab7efc80d51df296a2edfc50f9 | |
parent | 072d506240f6c39387b2edd4421818cc914c0912 (diff) |
tests: Test that descriptors flag is set for migrated blank wallets
-rwxr-xr-x | test/functional/wallet_migration.py | 2 |
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") |