Skip to content

Commit d05be12

Browse files
committed
test: added coverage to estimatefee
Added a assert for an rpc error when we try to estimate fee for the max conf_target
1 parent 2880bb5 commit d05be12

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/functional/rpc_estimatefee.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ def run_test(self):
3636
assert_raises_rpc_error(-1, "estimatesmartfee", self.nodes[0].estimatesmartfee, 1, 'ECONOMICAL', 1)
3737
assert_raises_rpc_error(-1, "estimaterawfee", self.nodes[0].estimaterawfee, 1, 1, 1)
3838

39+
# max value of 1008 per src/policy/fees.h
40+
assert_raises_rpc_error(-8, "Invalid conf_target, must be between 1 and 1008", self.nodes[0].estimaterawfee, 1009)
41+
3942
# valid calls
4043
self.nodes[0].estimatesmartfee(1)
4144
# self.nodes[0].estimatesmartfee(1, None)

0 commit comments

Comments
 (0)