2016-03-19 20:58:06 +01:00
|
|
|
#!/usr/bin/env python3
|
2021-07-28 13:57:16 +02:00
|
|
|
# Copyright (c) 2014-2021 The Bitcoin Core developers
|
2014-12-02 17:44:50 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test spending coinbase transactions.
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2017-01-18 00:34:40 +01:00
|
|
|
The coinbase transaction in block N can appear in block
|
|
|
|
N+100... so is valid in the mempool when the best block
|
|
|
|
height is N+99.
|
|
|
|
This test makes sure coinbase spends that will be mature
|
|
|
|
in the next block are accepted into the memory pool,
|
|
|
|
but less mature coinbase spends are NOT.
|
|
|
|
"""
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2015-05-02 12:53:35 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-07-07 00:10:35 +02:00
|
|
|
from test_framework.util import assert_equal, assert_raises_rpc_error
|
2020-11-13 23:55:20 +01:00
|
|
|
from test_framework.wallet import MiniWallet
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2018-08-08 20:30:09 +02:00
|
|
|
|
2014-12-02 17:44:50 +01:00
|
|
|
class MempoolSpendCoinbaseTest(BitcoinTestFramework):
|
2017-06-10 00:21:21 +02:00
|
|
|
def set_test_params(self):
|
2016-05-14 13:01:31 +02:00
|
|
|
self.num_nodes = 1
|
2018-09-09 19:32:37 +02:00
|
|
|
|
2014-12-02 17:44:50 +01:00
|
|
|
def run_test(self):
|
2020-11-13 23:55:20 +01:00
|
|
|
wallet = MiniWallet(self.nodes[0])
|
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
# Invalidate two blocks, so that miniwallet has access to a coin that will mature in the next block
|
|
|
|
chain_height = 198
|
|
|
|
self.nodes[0].invalidateblock(self.nodes[0].getblockhash(chain_height + 1))
|
|
|
|
assert_equal(chain_height, self.nodes[0].getblockcount())
|
2021-09-17 15:38:38 +02:00
|
|
|
wallet.rescan_utxos()
|
2014-12-02 17:44:50 +01:00
|
|
|
|
|
|
|
# Coinbase at height chain_height-100+1 ok in mempool, should
|
|
|
|
# get mined. Coinbase at height chain_height-100+2 is
|
2020-11-13 23:55:20 +01:00
|
|
|
# too immature to spend.
|
2021-09-17 15:38:38 +02:00
|
|
|
coinbase_txid = lambda h: self.nodes[0].getblock(self.nodes[0].getblockhash(h))['tx'][0]
|
|
|
|
utxo_mature = wallet.get_utxo(txid=coinbase_txid(chain_height - 100 + 1))
|
|
|
|
utxo_immature = wallet.get_utxo(txid=coinbase_txid(chain_height - 100 + 2))
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
spend_mature_id = wallet.send_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_mature)["txid"]
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
# other coinbase should be too immature to spend
|
2022-06-13 14:08:12 +02:00
|
|
|
immature_tx = wallet.create_self_transfer(utxo_to_spend=utxo_immature)
|
2020-11-13 23:55:20 +01:00
|
|
|
assert_raises_rpc_error(-26,
|
|
|
|
"bad-txns-premature-spend-of-coinbase",
|
2021-04-22 13:44:05 +02:00
|
|
|
lambda: self.nodes[0].sendrawtransaction(immature_tx['hex']))
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
# mempool should have just the mature one
|
|
|
|
assert_equal(self.nodes[0].getrawmempool(), [spend_mature_id])
|
2014-12-02 17:44:50 +01:00
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
# mine a block, mature one should get confirmed
|
2021-08-19 17:10:24 +02:00
|
|
|
self.generate(self.nodes[0], 1)
|
2014-12-02 17:44:50 +01:00
|
|
|
assert_equal(set(self.nodes[0].getrawmempool()), set())
|
|
|
|
|
2021-04-23 09:47:19 +02:00
|
|
|
# ... and now previously immature can be spent:
|
|
|
|
spend_new_id = self.nodes[0].sendrawtransaction(immature_tx['hex'])
|
|
|
|
assert_equal(self.nodes[0].getrawmempool(), [spend_new_id])
|
2020-11-13 23:55:20 +01:00
|
|
|
|
2014-12-02 17:44:50 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
MempoolSpendCoinbaseTest().main()
|