mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain: do not reject chain histories matching only genesis
This is fine if our local chain is so small that it is entirely contained within the last jump in the peer's short chain history.
This commit is contained in:
parent
53e18cafdf
commit
0d036bec26
1 changed files with 0 additions and 8 deletions
|
@ -1828,14 +1828,6 @@ bool Blockchain::find_blockchain_supplement(const std::list<crypto::hash>& qbloc
|
|||
return false;
|
||||
}
|
||||
|
||||
// if split_height remains 0, we didn't have any but the genesis block in common
|
||||
// which is only fine if the blocks just have the genesis block
|
||||
if(split_height == 0 && qblock_ids.size() > 1)
|
||||
{
|
||||
LOG_ERROR("Ours and foreign blockchain have only genesis block in common... o.O");
|
||||
return false;
|
||||
}
|
||||
|
||||
//we start to put block ids INCLUDING last known id, just to make other side be sure
|
||||
starter_offset = split_height;
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue