aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_blank.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/wallet_blank.py')
-rwxr-xr-xtest/functional/wallet_blank.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/wallet_blank.py b/test/functional/wallet_blank.py
index 2767e5ffd7..eda3fda35b 100755
--- a/test/functional/wallet_blank.py
+++ b/test/functional/wallet_blank.py
@@ -72,8 +72,7 @@ class WalletBlankTest(BitcoinTestFramework):
wif = bytes_to_wif(eckey.get_bytes(), eckey.is_compressed)
wallet.importprivkey(wif)
- # FIXME: A bug results in blank remaining set
- assert_equal(wallet.getwalletinfo()["blank"], True)
+ assert_equal(wallet.getwalletinfo()["blank"], False)
def test_importmulti(self):
if self.options.descriptors:
@@ -121,8 +120,7 @@ class WalletBlankTest(BitcoinTestFramework):
def_wallet.dumpwallet(wallet_dump_path)
wallet.importwallet(wallet_dump_path)
- # FIXME: A bug results in blank remaining set
- assert_equal(wallet.getwalletinfo()["blank"], True)
+ assert_equal(wallet.getwalletinfo()["blank"], False)
def test_encrypt_legacy(self):
if self.options.descriptors: