diff options
author | S3RK <1466284+S3RK@users.noreply.github.com> | 2021-08-19 10:09:36 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-08-20 10:36:47 +0300 |
commit | 88fb7e37ad37f2a262c7bf1f35ce77aa57113f32 (patch) | |
tree | 3c37f69db3fbb501fae5b6c571246b8e024e3cd8 /test/functional | |
parent | 63fec7e2958cd4349d73faf854e0665e7af30965 (diff) |
test: fix bug in 22686
Github-Pull: bitcoin/bitcoin#22742
Rebased-From: 8dcbbbea6486e9ab7d5e7397b82585141f9910bf
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/rpc_fundrawtransaction.py | 2 |
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"] |