mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
test: run mempool_resurrect.py even with wallet disabled
This commit is contained in:
parent
143bd108ed
commit
11a32722f0
1 changed files with 27 additions and 34 deletions
|
@ -4,66 +4,59 @@
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Test resurrection of mined transactions when the blockchain is re-organized."""
|
"""Test resurrection of mined transactions when the blockchain is re-organized."""
|
||||||
|
|
||||||
from test_framework.blocktools import create_raw_transaction
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import assert_equal
|
from test_framework.util import assert_equal
|
||||||
|
from test_framework.wallet import MiniWallet
|
||||||
|
|
||||||
|
|
||||||
class MempoolCoinbaseTest(BitcoinTestFramework):
|
class MempoolCoinbaseTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
self.num_nodes = 1
|
self.num_nodes = 1
|
||||||
|
self.setup_clean_chain = True
|
||||||
def skip_test_if_missing_module(self):
|
|
||||||
self.skip_if_no_wallet()
|
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
node0_address = self.nodes[0].getnewaddress()
|
node = self.nodes[0]
|
||||||
|
wallet = MiniWallet(node)
|
||||||
|
|
||||||
|
# Add enough mature utxos to the wallet so that all txs spend confirmed coins
|
||||||
|
wallet.generate(3)
|
||||||
|
node.generate(100)
|
||||||
|
|
||||||
# Spend block 1/2/3's coinbase transactions
|
# Spend block 1/2/3's coinbase transactions
|
||||||
# Mine a block.
|
# Mine a block
|
||||||
# Create three more transactions, spending the spends
|
# Create three more transactions, spending the spends
|
||||||
# Mine another block.
|
# Mine another block
|
||||||
# ... make sure all the transactions are confirmed
|
# ... make sure all the transactions are confirmed
|
||||||
# Invalidate both blocks
|
# Invalidate both blocks
|
||||||
# ... make sure all the transactions are put back in the mempool
|
# ... make sure all the transactions are put back in the mempool
|
||||||
# Mine a new block
|
# Mine a new block
|
||||||
# ... make sure all the transactions are confirmed again.
|
# ... make sure all the transactions are confirmed again
|
||||||
|
|
||||||
b = [self.nodes[0].getblockhash(n) for n in range(1, 4)]
|
|
||||||
coinbase_txids = [self.nodes[0].getblock(h)['tx'][0] for h in b]
|
|
||||||
spends1_raw = [create_raw_transaction(self.nodes[0], txid, node0_address, amount=49.99) for txid in coinbase_txids]
|
|
||||||
spends1_id = [self.nodes[0].sendrawtransaction(tx) for tx in spends1_raw]
|
|
||||||
|
|
||||||
blocks = []
|
blocks = []
|
||||||
blocks.extend(self.nodes[0].generate(1))
|
spends1_ids = [wallet.send_self_transfer(from_node=node)['txid'] for _ in range(3)]
|
||||||
|
blocks.extend(node.generate(1))
|
||||||
|
spends2_ids = [wallet.send_self_transfer(from_node=node)['txid'] for _ in range(3)]
|
||||||
|
blocks.extend(node.generate(1))
|
||||||
|
|
||||||
spends2_raw = [create_raw_transaction(self.nodes[0], txid, node0_address, amount=49.98) for txid in spends1_id]
|
spends_ids = set(spends1_ids + spends2_ids)
|
||||||
spends2_id = [self.nodes[0].sendrawtransaction(tx) for tx in spends2_raw]
|
|
||||||
|
|
||||||
blocks.extend(self.nodes[0].generate(1))
|
|
||||||
|
|
||||||
# mempool should be empty, all txns confirmed
|
# mempool should be empty, all txns confirmed
|
||||||
assert_equal(set(self.nodes[0].getrawmempool()), set())
|
assert_equal(set(node.getrawmempool()), set())
|
||||||
for txid in spends1_id+spends2_id:
|
confirmed_txns = set(node.getblock(blocks[0])['tx'] + node.getblock(blocks[1])['tx'])
|
||||||
tx = self.nodes[0].gettransaction(txid)
|
# Checks that all spend txns are contained in the mined blocks
|
||||||
assert tx["confirmations"] > 0
|
assert(spends_ids < confirmed_txns)
|
||||||
|
|
||||||
# Use invalidateblock to re-org back
|
# Use invalidateblock to re-org back
|
||||||
for node in self.nodes:
|
|
||||||
node.invalidateblock(blocks[0])
|
node.invalidateblock(blocks[0])
|
||||||
|
|
||||||
# All txns should be back in mempool with 0 confirmations
|
# 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(node.getrawmempool()), spends_ids)
|
||||||
for txid in spends1_id+spends2_id:
|
|
||||||
tx = self.nodes[0].gettransaction(txid)
|
|
||||||
assert tx["confirmations"] == 0
|
|
||||||
|
|
||||||
# Generate another block, they should all get mined
|
# Generate another block, they should all get mined
|
||||||
self.nodes[0].generate(1)
|
node.generate(1)
|
||||||
# mempool should be empty, all txns confirmed
|
# mempool should be empty, all txns confirmed
|
||||||
assert_equal(set(self.nodes[0].getrawmempool()), set())
|
assert_equal(set(node.getrawmempool()), set())
|
||||||
for txid in spends1_id+spends2_id:
|
confirmed_txns = set(node.getblock(blocks[0])['tx'] + node.getblock(blocks[1])['tx'])
|
||||||
tx = self.nodes[0].gettransaction(txid)
|
assert(spends_ids < confirmed_txns)
|
||||||
assert tx["confirmations"] > 0
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in a new issue