We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5db2f commit 466e4dfCopy full SHA for 466e4df
test/functional/test_framework/mempool_util.py
@@ -30,6 +30,7 @@ def assert_mempool_contents(test_framework, node, expected=None, sync=True):
30
test_framework.sync_mempools()
31
if not expected:
32
expected = []
33
+ assert_equal(len(expected), len(set(expected)))
34
mempool = node.getrawmempool(verbose=False)
35
assert_equal(len(mempool), len(expected))
36
for tx in expected:
0 commit comments