diff options
author | Jon Atack <jon@atack.com> | 2020-12-04 11:20:39 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-12-04 22:12:36 +0100 |
commit | ce207d6b93d35bc02fcd2dd28f1fd95869261d43 (patch) | |
tree | 3b1af55da9e1e2b028fecd7e6d114f8d7a800dbe /test | |
parent | 751ffaabad82f7904fd1d9742a0b323a0ab7bfee (diff) |
wallet, bugfix: allow send to take string fee rate values
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/wallet_send.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/wallet_send.py b/test/functional/wallet_send.py index 192e9065e6..9835c5a2af 100755 --- a/test/functional/wallet_send.py +++ b/test/functional/wallet_send.py @@ -256,8 +256,8 @@ class WalletSendTest(BitcoinTestFramework): assert res["complete"] self.log.info("Test setting explicit fee rate") - res1 = self.test_send(from_wallet=w0, to_wallet=w1, amount=1, arg_fee_rate=1, add_to_wallet=False) - res2 = self.test_send(from_wallet=w0, to_wallet=w1, amount=1, fee_rate=1, add_to_wallet=False) + res1 = self.test_send(from_wallet=w0, to_wallet=w1, amount=1, arg_fee_rate="1", add_to_wallet=False) + res2 = self.test_send(from_wallet=w0, to_wallet=w1, amount=1, fee_rate="1", add_to_wallet=False) assert_equal(self.nodes[1].decodepsbt(res1["psbt"])["fee"], self.nodes[1].decodepsbt(res2["psbt"])["fee"]) res = self.test_send(from_wallet=w0, to_wallet=w1, amount=1, fee_rate=7, add_to_wallet=False) |