Fix tests

Co-Authored-By: UdjinM6 <UdjinM6@users.noreply.github.com>
This commit is contained in:
PastaPastaPasta 2019-08-03 10:56:18 -05:00 committed by Pasta
parent 6edcf43fcd
commit 106fdfa0b0
No known key found for this signature in database
GPG Key ID: D362C9F7142766AE

View File

@ -23,7 +23,7 @@ class MultiWalletTest(BitcoinTestFramework):
#check w1 wallet balance #check w1 wallet balance
walletinfo = w1.getwalletinfo() walletinfo = w1.getwalletinfo()
assert_equal(walletinfo['immature_balance'], 50) assert_equal(walletinfo['immature_balance'], 500)
#check w1 wallet balance #check w1 wallet balance
w2 = self.nodes[0] / "wallet/w2" w2 = self.nodes[0] / "wallet/w2"
@ -33,7 +33,7 @@ class MultiWalletTest(BitcoinTestFramework):
w3 = self.nodes[0] / "wallet/w3" w3 = self.nodes[0] / "wallet/w3"
w1.generate(101) w1.generate(101)
assert_equal(w1.getbalance(), 100) assert_equal(w1.getbalance(), 1000)
assert_equal(w2.getbalance(), 0) assert_equal(w2.getbalance(), 0)
assert_equal(w3.getbalance(), 0) assert_equal(w3.getbalance(), 0)