Tests: Fix a comment
This commit is contained in:
parent
f69d92299d
commit
086fc83571
1 changed files with 2 additions and 3 deletions
|
@ -47,12 +47,11 @@ class MempoolCoinbaseTest(BitcoinTestFramework):
|
||||||
tx = self.nodes[0].gettransaction(txid)
|
tx = self.nodes[0].gettransaction(txid)
|
||||||
assert(tx["confirmations"] > 0)
|
assert(tx["confirmations"] > 0)
|
||||||
|
|
||||||
# Use invalidateblock to re-org back; all transactions should
|
# Use invalidateblock to re-org back
|
||||||
# end up unconfirmed and back in the mempool
|
|
||||||
for node in self.nodes:
|
for node in self.nodes:
|
||||||
node.invalidateblock(blocks[0])
|
node.invalidateblock(blocks[0])
|
||||||
|
|
||||||
# mempool should be empty, all txns confirmed
|
# All txns should be back in mempool with 0 confirmations
|
||||||
assert_equal(set(self.nodes[0].getrawmempool()), set(spends1_id+spends2_id))
|
assert_equal(set(self.nodes[0].getrawmempool()), set(spends1_id+spends2_id))
|
||||||
for txid in spends1_id+spends2_id:
|
for txid in spends1_id+spends2_id:
|
||||||
tx = self.nodes[0].gettransaction(txid)
|
tx = self.nodes[0].gettransaction(txid)
|
||||||
|
|
Loading…
Reference in a new issue