aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-06-04 23:15:03 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-06-18 16:35:39 +0100
commit0b82bac76d0f842bd2294a290388536951fbc576 (patch)
tree4806c11e461ddfd1e33ad64728a3b70b3a465339 /test
parent0ee77b20771fe34f8dbde6b16d7e2637859baec3 (diff)
downloadbitcoin-0b82bac76d0f842bd2294a290388536951fbc576.tar.xz
bugfix: Remove dangling wallet env instance
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/wallet_multiwallet.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py
index 8d15ef661b..e6097b5d92 100755
--- a/test/functional/wallet_multiwallet.py
+++ b/test/functional/wallet_multiwallet.py
@@ -256,5 +256,10 @@ class MultiWalletTest(BitcoinTestFramework):
assert_equal(self.nodes[0].listwallets(), [])
assert_raises_rpc_error(-32601, "Method not found (wallet method is disabled because no wallet is loaded)", self.nodes[0].getwalletinfo)
+ # Successfully load a previously unloaded wallet
+ self.nodes[0].loadwallet('w1')
+ assert_equal(self.nodes[0].listwallets(), ['w1'])
+ assert_equal(w1.getwalletinfo()['walletname'], 'w1')
+
if __name__ == '__main__':
MultiWalletTest().main()