mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
blockchain: error out if the builtin hashes data size is wrong
This commit is contained in:
parent
a48ef0a65a
commit
21d4c21619
@ -5074,7 +5074,12 @@ void Blockchain::load_compiled_in_block_hashes(const GetCheckpointsCallback& get
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const size_t size_needed = 4 + nblocks * (sizeof(crypto::hash) * 2);
|
const size_t size_needed = 4 + nblocks * (sizeof(crypto::hash) * 2);
|
||||||
if(nblocks > 0 && nblocks > (m_db->height() + HASH_OF_HASHES_STEP - 1) / HASH_OF_HASHES_STEP && checkpoints.size() >= size_needed)
|
if(checkpoints.size() != size_needed)
|
||||||
|
{
|
||||||
|
MERROR("Failed to load hashes - unexpected data size");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if(nblocks > 0 && nblocks > (m_db->height() + HASH_OF_HASHES_STEP - 1) / HASH_OF_HASHES_STEP)
|
||||||
{
|
{
|
||||||
p += sizeof(uint32_t);
|
p += sizeof(uint32_t);
|
||||||
m_blocks_hash_of_hashes.reserve(nblocks);
|
m_blocks_hash_of_hashes.reserve(nblocks);
|
||||||
|
Loading…
Reference in New Issue
Block a user