mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain: add a missing validity check to rollback_blockchain_switching
It was present in the original code
This commit is contained in:
parent
3cabdb5ef2
commit
5cec076e13
1 changed files with 6 additions and 0 deletions
|
@ -717,6 +717,12 @@ bool Blockchain::rollback_blockchain_switching(std::list<block>& original_chain,
|
|||
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||
CRITICAL_REGION_LOCAL(m_blockchain_lock);
|
||||
|
||||
// fail if rollback_height passed is too high
|
||||
if (rollback_height > m_db->height())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
m_timestamps_and_difficulties_height = 0;
|
||||
|
||||
// remove blocks from blockchain until we get back to where we should be.
|
||||
|
|
Loading…
Reference in a new issue