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.
/mempool/info
getmempoolinfo
1 parent dd9f61a commit 1df42bcCopy full SHA for 1df42bc
test/functional/interface_rest.py
@@ -330,6 +330,9 @@ def run_test(self):
330
# the size of the memory pool should be greater than 3x ~100 bytes
331
assert_greater_than(json_obj['bytes'], 300)
332
333
+ mempool_info = self.nodes[0].getmempoolinfo()
334
+ assert_equal(json_obj, mempool_info)
335
+
336
# Check that there are our submitted transactions in the TX memory pool
337
json_obj = self.test_rest_request("/mempool/contents")
338
raw_mempool_verbose = self.nodes[0].getrawmempool(verbose=True)
0 commit comments