Skip to content

Commit 086fc83

Browse files
committed
Tests: Fix a comment
1 parent f69d922 commit 086fc83

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/functional/mempool_resurrect.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,11 @@ def run_test(self):
4747
tx = self.nodes[0].gettransaction(txid)
4848
assert(tx["confirmations"] > 0)
4949

50-
# Use invalidateblock to re-org back; all transactions should
51-
# end up unconfirmed and back in the mempool
50+
# Use invalidateblock to re-org back
5251
for node in self.nodes:
5352
node.invalidateblock(blocks[0])
5453

55-
# mempool should be empty, all txns confirmed
54+
# All txns should be back in mempool with 0 confirmations
5655
assert_equal(set(self.nodes[0].getrawmempool()), set(spends1_id+spends2_id))
5756
for txid in spends1_id+spends2_id:
5857
tx = self.nodes[0].gettransaction(txid)

0 commit comments

Comments
 (0)