Skip to content

Commit 7e83e74

Browse files
author
MarcoFalke
committed
Merge bitcoin/bitcoin#21178: test: run mempool_reorg.py even with wallet disabled
a3f0cbf test: run mempool_reorg.py even with wallet disabled (Darius Parvin) Pull request description: Run mempool_reorg.py test even when the wallet is disabled, as discussed in #20078. As part of this PR I created a new method in `MiniWallet`, `create_self_transfer`, to return a raw tx (without broadcasting it) and its associated utxo. ACKs for top commit: MarcoFalke: cr ACK a3f0cbf Tree-SHA512: 316a38faffadcb87499c1d6eca21e9696cef65362bbffcf621788a9b771bb1fa2971b1c7835cbd34b952d7612ad83afbca824cd8be39ecd6b994e8963027f991
2 parents 0b9ed3f + a3f0cbf commit 7e83e74

File tree

2 files changed

+59
-58
lines changed

2 files changed

+59
-58
lines changed

test/functional/mempool_reorg.py

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
that spend (directly or indirectly) coinbase transactions.
99
"""
1010

11-
from test_framework.blocktools import (
12-
COINBASE_MATURITY,
13-
create_raw_transaction,
14-
)
1511
from test_framework.test_framework import BitcoinTestFramework
1612
from test_framework.util import assert_equal, assert_raises_rpc_error
17-
13+
from test_framework.wallet import MiniWallet
1814

1915
class MempoolCoinbaseTest(BitcoinTestFramework):
2016
def set_test_params(self):
@@ -26,86 +22,90 @@ def set_test_params(self):
2622
[]
2723
]
2824

29-
def skip_test_if_missing_module(self):
30-
self.skip_if_no_wallet()
31-
3225
def run_test(self):
26+
wallet = MiniWallet(self.nodes[0])
27+
3328
# Start with a 200 block chain
3429
assert_equal(self.nodes[0].getblockcount(), 200)
3530

36-
# Mine four blocks. After this, nodes[0] blocks
37-
# 101, 102, and 103 are spend-able.
38-
new_blocks = self.nodes[1].generate(4)
39-
self.sync_all()
40-
41-
node0_address = self.nodes[0].getnewaddress()
42-
node1_address = self.nodes[1].getnewaddress()
31+
self.log.info("Add 4 coinbase utxos to the miniwallet")
32+
# Block 76 contains the first spendable coinbase txs.
33+
first_block = 76
34+
wallet.scan_blocks(start=first_block, num=4)
4335

4436
# Three scenarios for re-orging coinbase spends in the memory pool:
45-
# 1. Direct coinbase spend : spend_101
46-
# 2. Indirect (coinbase spend in chain, child in mempool) : spend_102 and spend_102_1
47-
# 3. Indirect (coinbase and child both in chain) : spend_103 and spend_103_1
48-
# Use invalidatblock to make all of the above coinbase spends invalid (immature coinbase),
37+
# 1. Direct coinbase spend : spend_1
38+
# 2. Indirect (coinbase spend in chain, child in mempool) : spend_2 and spend_2_1
39+
# 3. Indirect (coinbase and child both in chain) : spend_3 and spend_3_1
40+
# Use invalidateblock to make all of the above coinbase spends invalid (immature coinbase),
4941
# and make sure the mempool code behaves correctly.
50-
b = [self.nodes[0].getblockhash(n) for n in range(COINBASE_MATURITY + 1, COINBASE_MATURITY + 5)]
42+
b = [self.nodes[0].getblockhash(n) for n in range(first_block, first_block+4)]
5143
coinbase_txids = [self.nodes[0].getblock(h)['tx'][0] for h in b]
52-
spend_101_raw = create_raw_transaction(self.nodes[0], coinbase_txids[1], node1_address, amount=49.99)
53-
spend_102_raw = create_raw_transaction(self.nodes[0], coinbase_txids[2], node0_address, amount=49.99)
54-
spend_103_raw = create_raw_transaction(self.nodes[0], coinbase_txids[3], node0_address, amount=49.99)
55-
56-
# Create a transaction which is time-locked to two blocks in the future
57-
timelock_tx = self.nodes[0].createrawtransaction(
58-
inputs=[{
59-
"txid": coinbase_txids[0],
60-
"vout": 0,
61-
}],
62-
outputs={node0_address: 49.99},
63-
locktime=self.nodes[0].getblockcount() + 2,
64-
)
65-
timelock_tx = self.nodes[0].signrawtransactionwithwallet(timelock_tx)["hex"]
66-
# This will raise an exception because the timelock transaction is too immature to spend
44+
utxo_1 = wallet.get_utxo(txid=coinbase_txids[1])
45+
utxo_2 = wallet.get_utxo(txid=coinbase_txids[2])
46+
utxo_3 = wallet.get_utxo(txid=coinbase_txids[3])
47+
self.log.info("Create three transactions spending from coinbase utxos: spend_1, spend_2, spend_3")
48+
spend_1 = wallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_1)
49+
spend_2 = wallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_2)
50+
spend_3 = wallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_3)
51+
52+
self.log.info("Create another transaction which is time-locked to two blocks in the future")
53+
utxo = wallet.get_utxo(txid=coinbase_txids[0])
54+
timelock_tx = wallet.create_self_transfer(
55+
from_node=self.nodes[0],
56+
utxo_to_spend=utxo,
57+
mempool_valid=False,
58+
locktime=self.nodes[0].getblockcount() + 2
59+
)['hex']
60+
61+
self.log.info("Check that the time-locked transaction is too immature to spend")
6762
assert_raises_rpc_error(-26, "non-final", self.nodes[0].sendrawtransaction, timelock_tx)
6863

69-
# Broadcast and mine spend_102 and 103:
70-
spend_102_id = self.nodes[0].sendrawtransaction(spend_102_raw)
71-
spend_103_id = self.nodes[0].sendrawtransaction(spend_103_raw)
64+
self.log.info("Broadcast and mine spend_2 and spend_3")
65+
wallet.sendrawtransaction(from_node=self.nodes[0], tx_hex=spend_2['hex'])
66+
wallet.sendrawtransaction(from_node=self.nodes[0], tx_hex=spend_3['hex'])
67+
self.log.info("Generate a block")
7268
self.nodes[0].generate(1)
73-
# Time-locked transaction is still too immature to spend
69+
self.log.info("Check that time-locked transaction is still too immature to spend")
7470
assert_raises_rpc_error(-26, 'non-final', self.nodes[0].sendrawtransaction, timelock_tx)
7571

76-
# Create 102_1 and 103_1:
77-
spend_102_1_raw = create_raw_transaction(self.nodes[0], spend_102_id, node1_address, amount=49.98)
78-
spend_103_1_raw = create_raw_transaction(self.nodes[0], spend_103_id, node1_address, amount=49.98)
72+
self.log.info("Create spend_2_1 and spend_3_1")
73+
spend_2_utxo = wallet.get_utxo(txid=spend_2['txid'])
74+
spend_2_1 = wallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=spend_2_utxo)
75+
spend_3_utxo = wallet.get_utxo(txid=spend_3['txid'])
76+
spend_3_1 = wallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=spend_3_utxo)
7977

80-
# Broadcast and mine 103_1:
81-
spend_103_1_id = self.nodes[0].sendrawtransaction(spend_103_1_raw)
78+
self.log.info("Broadcast and mine spend_3_1")
79+
spend_3_1_id = self.nodes[0].sendrawtransaction(spend_3_1['hex'])
80+
self.log.info("Generate a block")
8281
last_block = self.nodes[0].generate(1)
8382
# Sync blocks, so that peer 1 gets the block before timelock_tx
8483
# Otherwise, peer 1 would put the timelock_tx in recentRejects
8584
self.sync_all()
8685

87-
# Time-locked transaction can now be spent
86+
self.log.info("The time-locked transaction can now be spent")
8887
timelock_tx_id = self.nodes[0].sendrawtransaction(timelock_tx)
8988

90-
# ... now put spend_101 and spend_102_1 in memory pools:
91-
spend_101_id = self.nodes[0].sendrawtransaction(spend_101_raw)
92-
spend_102_1_id = self.nodes[0].sendrawtransaction(spend_102_1_raw)
89+
self.log.info("Add spend_1 and spend_2_1 to the mempool")
90+
spend_1_id = self.nodes[0].sendrawtransaction(spend_1['hex'])
91+
spend_2_1_id = self.nodes[0].sendrawtransaction(spend_2_1['hex'])
9392

94-
assert_equal(set(self.nodes[0].getrawmempool()), {spend_101_id, spend_102_1_id, timelock_tx_id})
93+
assert_equal(set(self.nodes[0].getrawmempool()), {spend_1_id, spend_2_1_id, timelock_tx_id})
9594
self.sync_all()
9695

96+
self.log.info("invalidate the last block")
9797
for node in self.nodes:
9898
node.invalidateblock(last_block[0])
99-
# Time-locked transaction is now too immature and has been removed from the mempool
100-
# spend_103_1 has been re-orged out of the chain and is back in the mempool
101-
assert_equal(set(self.nodes[0].getrawmempool()), {spend_101_id, spend_102_1_id, spend_103_1_id})
99+
self.log.info("The time-locked transaction is now too immature and has been removed from the mempool")
100+
self.log.info("spend_3_1 has been re-orged out of the chain and is back in the mempool")
101+
assert_equal(set(self.nodes[0].getrawmempool()), {spend_1_id, spend_2_1_id, spend_3_1_id})
102102

103-
# Use invalidateblock to re-org back and make all those coinbase spends
104-
# immature/invalid:
103+
self.log.info("Use invalidateblock to re-org back and make all those coinbase spends immature/invalid")
104+
b = self.nodes[0].getblockhash(first_block + 100)
105105
for node in self.nodes:
106-
node.invalidateblock(new_blocks[0])
106+
node.invalidateblock(b)
107107

108-
# mempool should be empty.
108+
self.log.info("Check that the mempool is empty")
109109
assert_equal(set(self.nodes[0].getrawmempool()), set())
110110
self.sync_all()
111111

test/functional/test_framework/wallet.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ def get_utxo(self, *, txid='', mark_as_spent=True):
123123
else:
124124
return self._utxos[index]
125125

126-
def send_self_transfer(self, *, fee_rate=Decimal("0.003"), from_node, utxo_to_spend=None):
126+
def send_self_transfer(self, *, fee_rate=Decimal("0.003"), from_node, utxo_to_spend=None, locktime=0):
127127
"""Create and send a tx with the specified fee_rate. Fee may be exact or at most one satoshi higher than needed."""
128128
tx = self.create_self_transfer(fee_rate=fee_rate, from_node=from_node, utxo_to_spend=utxo_to_spend)
129129
self.sendrawtransaction(from_node=from_node, tx_hex=tx['hex'])
130130
return tx
131131

132-
def create_self_transfer(self, *, fee_rate=Decimal("0.003"), from_node, utxo_to_spend=None, mempool_valid=True):
132+
def create_self_transfer(self, *, fee_rate=Decimal("0.003"), from_node, utxo_to_spend=None, mempool_valid=True, locktime=0):
133133
"""Create and return a tx with the specified fee_rate. Fee may be exact or at most one satoshi higher than needed."""
134134
self._utxos = sorted(self._utxos, key=lambda k: k['value'])
135135
utxo_to_spend = utxo_to_spend or self._utxos.pop() # Pick the largest utxo (if none provided) and hope it covers the fee
@@ -141,6 +141,7 @@ def create_self_transfer(self, *, fee_rate=Decimal("0.003"), from_node, utxo_to_
141141
tx = CTransaction()
142142
tx.vin = [CTxIn(COutPoint(int(utxo_to_spend['txid'], 16), utxo_to_spend['vout']))]
143143
tx.vout = [CTxOut(int(send_value * COIN), self._scriptPubKey)]
144+
tx.nLockTime = locktime
144145
if not self._address:
145146
# raw script
146147
if self._priv_key is not None:

0 commit comments

Comments
 (0)