cryptonote_protocol: less strict check on top version on connect

This allows peers who synced past a fork on the wrong height
to reorg to the right chain after they updated their software
to include the new version.
pull/95/head
moneromooo-monero 7 years ago
parent cc81a37155
commit 317ab21a03
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -315,7 +315,7 @@ namespace cryptonote
bool t_cryptonote_protocol_handler<t_core>::get_payload_sync_data(CORE_SYNC_DATA& hshd)
{
m_core.get_blockchain_top(hshd.current_height, hshd.top_id);
hshd.top_version = m_core.get_hard_fork_version(hshd.current_height);
hshd.top_version = m_core.get_ideal_hard_fork_version(hshd.current_height);
hshd.cumulative_difficulty = m_core.get_block_cumulative_difficulty(hshd.current_height);
hshd.current_height +=1;
return true;

Loading…
Cancel
Save