Skip to content

Commit

Permalink
tests for explicit-fee-too-low error
Browse files Browse the repository at this point in the history
Github-Pull: bitcoin#11413
Rebased-From: 863faa5
  • Loading branch information
kallewoof authored and luke-jr committed May 11, 2020
1 parent aa756e8 commit 56bd8c3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/functional/wallet_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,12 @@ def run_test(self):
amount=1.0,
conf_target=-1,
estimate_mode='SAT/b')
assert_raises_rpc_error(-4, "Fee rate (0.00000200 BTC/kB) is lower than the minimum fee rate setting (0.00001000 BTC/kB)",
self.nodes[2].sendtoaddress,
address=address,
amount=1.0,
conf_target=0.2,
estimate_mode='SAT/B')
txid = self.nodes[2].sendtoaddress(
address=address,
amount=1.0,
Expand Down

0 comments on commit 56bd8c3

Please sign in to comment.