mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 07:39:08 +01:00
Merge bitcoin/bitcoin#30598: assumeutxo: Drop block height from metadata
00618e8745assumeutxo: Drop block height from metadata (Fabian Jahr) Pull request description: Fixes https://github.com/bitcoin/bitcoin/issues/30514 which has more context and shows how the issue can be reproduced. Since the value in question is removed, there is no test to add to reproduce anything. This is an alternative approach to #30516 with much of the [code being suggested there](https://github.com/bitcoin/bitcoin/pull/30516#discussion_r1689146902). ACKs for top commit: maflcko: re-ACK00618e8745🎌 achow101: ACK00618e8745theStack: Code-review ACK00618e8745ismaelsadeeq: Re-ACK00618e8745mzumsande: ACK00618e8745Tree-SHA512: db9575247bae838ad7742a27a216faaf55bb11e022f9afdd05752bb09bbf9614717d0ad64304ff5722a16bf41d8dea888af544e4ae26dcaa528c1add0269a4a8
This commit is contained in:
@@ -57,7 +57,7 @@ FUZZ_TARGET(utxo_snapshot, .init = initialize_chain)
|
||||
int base_blockheight{fuzzed_data_provider.ConsumeIntegralInRange<int>(1, 2 * COINBASE_MATURITY)};
|
||||
uint256 base_blockhash{g_chain->at(base_blockheight - 1)->GetHash()};
|
||||
uint64_t m_coins_count{fuzzed_data_provider.ConsumeIntegralInRange<uint64_t>(1, 3 * COINBASE_MATURITY)};
|
||||
SnapshotMetadata metadata{msg_start, base_blockhash, base_blockheight, m_coins_count};
|
||||
SnapshotMetadata metadata{msg_start, base_blockhash, m_coins_count};
|
||||
outfile << metadata;
|
||||
}
|
||||
// Coins
|
||||
|
||||
Reference in New Issue
Block a user