We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514352b commit 14b872bCopy full SHA for 14b872b
test/functional/mempool_fee_histogram.py
@@ -93,9 +93,9 @@ def run_test(self):
93
assert_equal(0, info['fee_histogram']['3']['fees'])
94
assert_equal(3, info['fee_histogram']['3']['from_feerate'])
95
96
- assert_equal(188, info['fee_histogram']['5']['sizes'])
+ assert_equal(tx1_info['vsize'], info['fee_histogram']['5']['sizes'])
97
assert_equal(1, info['fee_histogram']['5']['count'])
98
- assert_equal(940, info['fee_histogram']['5']['fees'])
+ assert_equal(tx1_info['fee'], info['fee_histogram']['5']['fees'])
99
assert_equal(5, info['fee_histogram']['5']['from_feerate'])
100
101
assert_equal(0, info['fee_histogram']['10']['sizes'])
0 commit comments