Skip to content

Commit

Permalink
test: added coverage to estimatefee
Browse files Browse the repository at this point in the history
Added a assert for an rpc error when we try to estimate fee for the max
conf_target
  • Loading branch information
kevkevinpal committed Jun 22, 2023
1 parent 2880bb5 commit d05be12
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/functional/rpc_estimatefee.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def run_test(self):
assert_raises_rpc_error(-1, "estimatesmartfee", self.nodes[0].estimatesmartfee, 1, 'ECONOMICAL', 1)
assert_raises_rpc_error(-1, "estimaterawfee", self.nodes[0].estimaterawfee, 1, 1, 1)

# max value of 1008 per src/policy/fees.h
assert_raises_rpc_error(-8, "Invalid conf_target, must be between 1 and 1008", self.nodes[0].estimaterawfee, 1009)

# valid calls
self.nodes[0].estimatesmartfee(1)
# self.nodes[0].estimatesmartfee(1, None)
Expand Down

0 comments on commit d05be12

Please sign in to comment.