Skip to content

Commit bf264e0

Browse files
committed
test: check_mempool_result negative feerate
Adds test in mempool_accept to check if a negative maxfeerate is inputed into check_mempool_result, asserts "Amount out of range" error message and -3 error code
1 parent 45b2a91 commit bf264e0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/functional/mempool_accept.py

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ def run_test(self):
9696
rawtxs=[raw_tx_in_block],
9797
maxfeerate=1,
9898
))
99+
# Check negative feerate
100+
assert_raises_rpc_error(-3, "Amount out of range", lambda: self.check_mempool_result(
101+
result_expected=None,
102+
rawtxs=[raw_tx_in_block],
103+
maxfeerate=-0.01,
104+
))
99105
# ... 0.99 passes
100106
self.check_mempool_result(
101107
result_expected=[{'txid': txid_in_block, 'allowed': False, 'reject-reason': 'txn-already-known'}],

0 commit comments

Comments
 (0)