We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e6f737 commit 7eacdc5Copy full SHA for 7eacdc5
test/functional/wallet_abandonconflict.py
@@ -110,8 +110,8 @@ def run_test(self):
110
assert_equal(newbalance, balance - signed3_change)
111
# Unconfirmed received funds that are not in mempool, also shouldn't show
112
# up in unconfirmed balance
113
- unconfbalance = self.nodes[0].getunconfirmedbalance() + self.nodes[0].getbalance()
114
- assert_equal(unconfbalance, newbalance)
+ balances = self.nodes[0].getbalances()['mine']
+ assert_equal(balances['untrusted_pending'] + balances['trusted'], newbalance)
115
# Also shouldn't show up in listunspent
116
assert not txABC2 in [utxo["txid"] for utxo in self.nodes[0].listunspent(0)]
117
balance = newbalance
0 commit comments