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 9ebe860 commit 0aa11b9Copy full SHA for 0aa11b9
test/functional/interface_rest.py
@@ -345,6 +345,9 @@ def run_test(self):
345
for obj in [json_obj, mempool_info]:
346
obj.pop("unbroadcastcount")
347
assert_equal(json_obj, mempool_info)
348
+ json_obj = self.test_rest_request("/mempool/info/with_fee_histogram")
349
+ mempool_info = self.nodes[0].getmempoolinfo(with_fee_histogram=True)
350
+ assert_equal(json_obj, mempool_info)
351
352
# Check that there are our submitted transactions in the TX memory pool
353
json_obj = self.test_rest_request("/mempool/contents")
0 commit comments