cryptonote_protocol: avoid spurious SYNCHRONIZED OK messages

This commit is contained in:
moneromooo-monero 2017-07-07 20:52:24 +01:00
parent 5be43fcdba
commit 84e23156ac
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -1402,8 +1402,18 @@ skip:
<< "\r\non connection [" << epee::net_utils::print_connection_context_short(context)<< "]");
context.m_state = cryptonote_connection_context::state_normal;
MGINFO_GREEN("SYNCHRONIZED OK");
on_connection_synchronized();
if (context.m_remote_blockchain_height >= m_core.get_target_blockchain_height())
{
if (m_core.get_current_blockchain_height() >= m_core.get_target_blockchain_height())
{
MGINFO_GREEN("SYNCHRONIZED OK");
on_connection_synchronized();
}
}
else
{
MINFO(context << " we've reached this peer's blockchain height");
}
}
return true;
}