aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Chow <github@achow101.com>2023-09-28 11:16:09 -0400
committerAndrew Chow <github@achow101.com>2023-09-28 11:22:10 -0400
commit9d5150ac47a2e8db0f23a2f04211fec3516afbe1 (patch)
treee08e51564dc2d270f502711af285b12374502105 /test
parent6619d6a8dca5a4d8e664a76526ac6bef3eb17831 (diff)
parentb5a962564eb15075e4e2a7bc0c235a56fa998ac3 (diff)
downloadbitcoin-9d5150ac47a2e8db0f23a2f04211fec3516afbe1.tar.xz
Merge bitcoin/bitcoin#28540: tests: Fix wallet_resendwallettransactions.py intermittent failure by using manual bumps instead of bumpfee
b5a962564eb15075e4e2a7bc0c235a56fa998ac3 tests: Use manual bumps instead of bumpfee for resendwallettransactions (Andrew Chow) Pull request description: Bumpfee will try to increase the entire package to the target feerate, which causes repeated bumpfees to quickly shoot up in fees, causing intermittent failures when the fee is too large. We don't care about this property, just that the child is continuously replaced until we observe it's position in mapWallet is before its parent. Instead of using bumpfee, we can create raw transactions which have only pay (just above) the additional incremental relay fee, thus avoiding this problem. Fixes #28491 ACKs for top commit: kevkevinpal: ACK [b5a9625](https://github.com/bitcoin/bitcoin/pull/28540/commits/b5a962564eb15075e4e2a7bc0c235a56fa998ac3) mzumsande: Code review ACK b5a962564eb15075e4e2a7bc0c235a56fa998ac3 pablomartin4btc: ACK b5a962564eb15075e4e2a7bc0c235a56fa998ac3 -> adding the `try_rpc` to avoid (skip) any possible failure around the manual bump fee (if we ever reach it as [explained](https://github.com/bitcoin/bitcoin/pull/28540#issuecomment-1737648048)) makes a lot of sense as the spirit of the test is the tx (child before parent) sort in the `mapWallet` (as also [explained](https://github.com/bitcoin/bitcoin/issues/28491#issuecomment-1736161363)). MarcoFalke: lgtm ACK b5a962564eb15075e4e2a7bc0c235a56fa998ac3 Tree-SHA512: f184f11c73be0c30753181901f51a3b4b9c4135e0c4681e9f4ca94692c49bac15c91683c85266a2124333c8593e9919bfd9102724616faab299740f2eb98741f
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/wallet_resendwallettransactions.py26
1 files changed, 23 insertions, 3 deletions
diff --git a/test/functional/wallet_resendwallettransactions.py b/test/functional/wallet_resendwallettransactions.py
index f36d8efda7..f61e1edc1d 100755
--- a/test/functional/wallet_resendwallettransactions.py
+++ b/test/functional/wallet_resendwallettransactions.py
@@ -5,6 +5,8 @@
"""Test that the wallet resends transactions periodically."""
import time
+from decimal import Decimal
+
from test_framework.blocktools import (
create_block,
create_coinbase,
@@ -15,6 +17,8 @@ from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
assert_raises_rpc_error,
+ get_fee,
+ try_rpc,
)
class ResendWalletTransactionsTest(BitcoinTestFramework):
@@ -86,18 +90,34 @@ class ResendWalletTransactionsTest(BitcoinTestFramework):
# ordering of mapWallet is, if the child is not before the parent, we will create a new
# child (via bumpfee) and remove the old child (via removeprunedfunds) until we get the
# ordering of child before parent.
- child_txid = node.send(outputs=[{addr: 0.5}], inputs=[{"txid":txid, "vout":0}])["txid"]
+ child_inputs = [{"txid": txid, "vout": 0}]
+ child_txid = node.sendall(recipients=[addr], inputs=child_inputs)["txid"]
+ # Get the child tx's info for manual bumping
+ child_tx_info = node.gettransaction(txid=child_txid, verbose=True)
+ child_output_value = child_tx_info["decoded"]["vout"][0]["value"]
+ # Include an additional 1 vbyte buffer to handle when we have a smaller signature
+ additional_child_fee = get_fee(child_tx_info["decoded"]["vsize"] + 1, Decimal(0.00001100))
while True:
txids = node.listreceivedbyaddress(minconf=0, address_filter=addr)[0]["txids"]
if txids == [child_txid, txid]:
break
- bumped = node.bumpfee(child_txid)
+ # Manually bump the tx
+ # The inputs and the output address stay the same, just changing the amount for the new fee
+ child_output_value -= additional_child_fee
+ bumped_raw = node.createrawtransaction(inputs=child_inputs, outputs=[{addr: child_output_value}])
+ bumped = node.signrawtransactionwithwallet(bumped_raw)
+ bumped_txid = node.decoderawtransaction(bumped["hex"])["txid"]
+ # Sometimes we will get a signature that is a little bit shorter than we expect which causes the
+ # feerate to be a bit higher, then the followup to be a bit lower. This results in a replacement
+ # that can't be broadcast. We can just skip that and keep grinding.
+ if try_rpc(-26, "insufficient fee, rejecting replacement", node.sendrawtransaction, bumped["hex"]):
+ continue
# The scheduler queue creates a copy of the added tx after
# send/bumpfee and re-adds it to the wallet (undoing the next
# removeprunedfunds). So empty the scheduler queue:
node.syncwithvalidationinterfacequeue()
node.removeprunedfunds(child_txid)
- child_txid = bumped["txid"]
+ child_txid = bumped_txid
entry_time = node.getmempoolentry(child_txid)["time"]
block_time = entry_time + 6 * 60