aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_bumpfee.py
diff options
context:
space:
mode:
authorGregory Sanders <gsanders87@gmail.com>2018-03-28 15:39:26 -0400
committerGregory Sanders <gsanders87@gmail.com>2018-03-28 15:39:26 -0400
commitf526046ef5d8300eab6f112f56f59fd3b7e11d33 (patch)
treec6889f5a3ac60851e3b5652a79d3b97cb14ea90b /test/functional/wallet_bumpfee.py
parent5805d6fead8d54ec14bfc89991d692bd75940d56 (diff)
downloadbitcoin-f526046ef5d8300eab6f112f56f59fd3b7e11d33.tar.xz
adapt bumpfee change discard test to be more strict and add note on p2sh discrep
Diffstat (limited to 'test/functional/wallet_bumpfee.py')
-rwxr-xr-xtest/functional/wallet_bumpfee.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/wallet_bumpfee.py b/test/functional/wallet_bumpfee.py
index 3e496248fd..f036481c35 100755
--- a/test/functional/wallet_bumpfee.py
+++ b/test/functional/wallet_bumpfee.py
@@ -181,7 +181,10 @@ def test_dust_to_fee(rbf_node, dest_address):
# the bumped tx sets fee=49,900, but it converts to 50,000
rbfid = spend_one_input(rbf_node, dest_address)
fulltx = rbf_node.getrawtransaction(rbfid, 1)
- bumped_tx = rbf_node.bumpfee(rbfid, {"totalFee": 49900})
+ # (32-byte p2sh-pwpkh output size + 148 p2pkh spend estimate) * 10k(discard_rate) / 1000 = 1800
+ # P2SH outputs are slightly "over-discarding" due to the IsDust calculation assuming it will
+ # be spent as a P2PKH.
+ bumped_tx = rbf_node.bumpfee(rbfid, {"totalFee": 50000-1800})
full_bumped_tx = rbf_node.getrawtransaction(bumped_tx["txid"], 1)
assert_equal(bumped_tx["fee"], Decimal("0.00050000"))
assert_equal(len(fulltx["vout"]), 2)