From 3904123da954f9ebd905de4129aec9f9bab9efc7 Mon Sep 17 00:00:00 2001 From: Ava Chow Date: Thu, 1 Feb 2024 18:01:34 -0500 Subject: [PATCH] tests: Test that descriptors flag is set for migrated blank wallets --- test/functional/wallet_migration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/wallet_migration.py b/test/functional/wallet_migration.py index 20e92dbef73..b466d3c5452 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")