mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
test: compare /mempool/contents response with getrawmempool RPC
This commit is contained in:
parent
5bc5cbaf31
commit
bef61496ab
1 changed files with 4 additions and 0 deletions
|
|
@ -326,6 +326,10 @@ class RESTTest (BitcoinTestFramework):
|
|||
|
||||
# Check that there are our submitted transactions in the TX memory pool
|
||||
json_obj = self.test_rest_request("/mempool/contents")
|
||||
raw_mempool_verbose = self.nodes[0].getrawmempool(verbose=True)
|
||||
|
||||
assert_equal(json_obj, raw_mempool_verbose)
|
||||
|
||||
for i, tx in enumerate(txs):
|
||||
assert tx in json_obj
|
||||
assert_equal(json_obj[tx]['spentby'], txs[i + 1:i + 2])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue