2022-02-26 11:54:28 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2020-2021 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
"""Test UTXO set hash value calculation in gettxoutsetinfo."""
|
|
|
|
|
|
|
|
from test_framework.messages import (
|
|
|
|
CBlock,
|
|
|
|
COutPoint,
|
2021-06-24 12:47:04 +02:00
|
|
|
from_hex,
|
2022-02-26 11:54:28 +01:00
|
|
|
)
|
2023-09-09 11:01:53 +02:00
|
|
|
from test_framework.crypto.muhash import MuHash3072
|
2022-02-26 11:54:28 +01:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import assert_equal
|
2021-03-26 08:52:51 +01:00
|
|
|
from test_framework.wallet import MiniWallet
|
2022-02-26 11:54:28 +01:00
|
|
|
|
|
|
|
class UTXOSetHashTest(BitcoinTestFramework):
|
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 1
|
|
|
|
self.setup_clean_chain = True
|
|
|
|
|
|
|
|
def test_muhash_implementation(self):
|
|
|
|
self.log.info("Test MuHash implementation consistency")
|
|
|
|
|
|
|
|
node = self.nodes[0]
|
2021-03-26 08:52:51 +01:00
|
|
|
wallet = MiniWallet(node)
|
|
|
|
mocktime = node.getblockheader(node.getblockhash(0))['time'] + 1
|
|
|
|
node.setmocktime(mocktime)
|
2022-02-26 11:54:28 +01:00
|
|
|
|
|
|
|
# Generate 100 blocks and remove the first since we plan to spend its
|
|
|
|
# coinbase
|
2024-10-01 21:25:52 +02:00
|
|
|
block_hashes = self.generate(wallet, 1) + self.generate(node, 99)
|
2021-06-24 12:47:04 +02:00
|
|
|
blocks = list(map(lambda block: from_hex(CBlock(), node.getblock(block, False)), block_hashes))
|
2021-03-26 08:52:51 +01:00
|
|
|
blocks.pop(0)
|
2022-02-26 11:54:28 +01:00
|
|
|
|
|
|
|
# Create a spending transaction and mine a block which includes it
|
2021-03-26 08:52:51 +01:00
|
|
|
txid = wallet.send_self_transfer(from_node=node)['txid']
|
2024-10-01 21:25:52 +02:00
|
|
|
tx_block = self.generateblock(node, output=wallet.get_address(), transactions=[txid])['hash']
|
2021-06-24 12:47:04 +02:00
|
|
|
blocks.append(from_hex(CBlock(), node.getblock(tx_block, False)))
|
2022-02-26 11:54:28 +01:00
|
|
|
|
|
|
|
# Serialize the outputs that should be in the UTXO set and add them to
|
|
|
|
# a MuHash object
|
|
|
|
muhash = MuHash3072()
|
|
|
|
|
|
|
|
for height, block in enumerate(blocks):
|
|
|
|
# The Genesis block coinbase is not part of the UTXO set and we
|
|
|
|
# spent the first mined block
|
|
|
|
height += 2
|
|
|
|
|
|
|
|
for tx in block.vtx:
|
|
|
|
for n, tx_out in enumerate(tx.vout):
|
|
|
|
coinbase = 1 if not tx.vin[0].prevout.hash else 0
|
|
|
|
|
|
|
|
# Skip witness commitment
|
|
|
|
if (coinbase and n > 0):
|
|
|
|
continue
|
|
|
|
|
|
|
|
data = COutPoint(int(tx.rehash(), 16), n).serialize()
|
2024-02-12 13:01:30 +01:00
|
|
|
data += (height * 2 + coinbase).to_bytes(4, "little")
|
2022-02-26 11:54:28 +01:00
|
|
|
data += tx_out.serialize()
|
|
|
|
|
|
|
|
muhash.insert(data)
|
|
|
|
|
|
|
|
finalized = muhash.digest()
|
|
|
|
node_muhash = node.gettxoutsetinfo("muhash")['muhash']
|
|
|
|
|
|
|
|
assert_equal(finalized[::-1].hex(), node_muhash)
|
|
|
|
|
2021-03-26 08:52:51 +01:00
|
|
|
self.log.info("Test deterministic UTXO set hash results")
|
|
|
|
assert_equal(node.gettxoutsetinfo()['hash_serialized_2'], "4eb23b9673b7472e33ebf6e6aefee849fe5bc5e598fd387c2f9222070cc2f711")
|
|
|
|
assert_equal(node.gettxoutsetinfo("muhash")['muhash'], "dd74d7f1fb047577915d490e82d063e843f7853ae7543c9980a28c67326e1a2c")
|
|
|
|
|
2022-02-26 11:54:28 +01:00
|
|
|
def run_test(self):
|
|
|
|
self.test_muhash_implementation()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
UTXOSetHashTest().main()
|