Add test for multiwallet batch RPC calls

Tests bug reported in https://github.com/bitcoin/bitcoin/issues/11257
This commit is contained in:
Russell Yanofsky 2017-09-07 17:40:25 -04:00
parent 74182f235c
commit 4526d21e52
1 changed files with 4 additions and 0 deletions

View File

@ -76,5 +76,9 @@ class MultiWalletTest(BitcoinTestFramework):
assert_equal(w2.getbalance(), 1)
assert_equal(w3.getbalance(), 2)
batch = w1.batch([w1.getblockchaininfo.get_request(), w1.getwalletinfo.get_request()])
assert_equal(batch[0]["result"]["chain"], "regtest")
assert_equal(batch[1]["result"]["walletname"], "w1")
if __name__ == '__main__':
MultiWalletTest().main()