diff options
author | Sishir Giri <sishirg27@gmail.com> | 2020-10-18 18:01:42 -0700 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-11-02 08:38:38 +0000 |
commit | 2ead31fb1b17c9b183a4b81f0ae4f48e5cf67d64 (patch) | |
tree | 24dd306bde6f4d459d67739446e7027d33678189 /test/functional | |
parent | 867dbeba5f91be15ca0d4a7303a71957ff9a37ad (diff) |
[wallet] Return object from upgradewallet RPC
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/wallet_upgradewallet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/wallet_upgradewallet.py b/test/functional/wallet_upgradewallet.py index 446a601aee..15d9b109c5 100755 --- a/test/functional/wallet_upgradewallet.py +++ b/test/functional/wallet_upgradewallet.py @@ -107,7 +107,7 @@ class UpgradeWalletTest(BitcoinTestFramework): # calling upgradewallet without version arguments # should return nothing if successful - assert_equal(wallet.upgradewallet(), "") + assert_equal(wallet.upgradewallet(), {}) new_version = wallet.getwalletinfo()["walletversion"] # upgraded wallet version should be greater than older one assert_greater_than(new_version, old_version) @@ -130,7 +130,7 @@ class UpgradeWalletTest(BitcoinTestFramework): assert_equal('hdseedid' in wallet.getwalletinfo(), False) # calling upgradewallet with explicit version number # should return nothing if successful - assert_equal(wallet.upgradewallet(169900), "") + assert_equal(wallet.upgradewallet(169900), {}) new_version = wallet.getwalletinfo()["walletversion"] # upgraded wallet should have version 169900 assert_equal(new_version, 169900) |