aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorS3RK <1466284+S3RK@users.noreply.github.com>2021-08-19 10:09:36 +0200
committerS3RK <1466284+S3RK@users.noreply.github.com>2021-08-19 10:09:36 +0200
commit8dcbbbea6486e9ab7d5e7397b82585141f9910bf (patch)
tree59ae52238c11dacb5047cca1ad35b206fb054292 /test
parentb784ab10f555b043c77a2356faff492c35a3404c (diff)
downloadbitcoin-8dcbbbea6486e9ab7d5e7397b82585141f9910bf.tar.xz
test: fix bug in 22686
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/rpc_fundrawtransaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_fundrawtransaction.py b/test/functional/rpc_fundrawtransaction.py
index 2524eaa7a5..fcc310394a 100755
--- a/test/functional/rpc_fundrawtransaction.py
+++ b/test/functional/rpc_fundrawtransaction.py
@@ -1006,7 +1006,7 @@ class RawTransactionsTest(BitcoinTestFramework):
assert_greater_than(fees, 0.01)
def do_fund_send(target):
- create_tx = tester.createrawtransaction([], [{funds.getnewaddress(): lower_bound}])
+ create_tx = tester.createrawtransaction([], [{funds.getnewaddress(): target}])
funded_tx = tester.fundrawtransaction(create_tx)
signed_tx = tester.signrawtransactionwithwallet(funded_tx["hex"])
assert signed_tx["complete"]