We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fb44e8 commit c0c652cCopy full SHA for c0c652c
test/functional/multiwallet.py
@@ -74,5 +74,9 @@ def run_test(self):
74
assert_equal(w2.getbalance(), 1)
75
assert_equal(w3.getbalance(), 2)
76
77
+ batch = w1._batch([w1.getblockchaininfo._call(), w1.getwalletinfo._call()])
78
+ assert_equal(batch[0]["result"]["chain"], "regtest")
79
+ assert_equal(batch[1]["result"]["walletname"], "w1")
80
+
81
if __name__ == '__main__':
82
MultiWalletTest().main()
0 commit comments