Skip to content

Commit

Permalink
fixup! test: Add mempool fee histogram test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed May 4, 2024
1 parent 9fa5635 commit 71144c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/mempool_fee_histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ def run_test(self):
assert_equal(0, info['fee_histogram']['3']['fees'])
assert_equal(3, info['fee_histogram']['3']['from_feerate'])

assert_equal(188, info['fee_histogram']['5']['sizes'])
assert_equal(tx1_info['vsize'], info['fee_histogram']['5']['sizes'])
assert_equal(1, info['fee_histogram']['5']['count'])
assert_equal(940, info['fee_histogram']['5']['fees'])
assert_equal(tx1_info['fee'], info['fee_histogram']['5']['fees'])
assert_equal(5, info['fee_histogram']['5']['from_feerate'])

assert_equal(0, info['fee_histogram']['10']['sizes'])
Expand Down

0 comments on commit 71144c6

Please sign in to comment.