mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
cryptonote_protocol: avoid spurious SYNCHRONIZED OK messages
This commit is contained in:
parent
5be43fcdba
commit
84e23156ac
1 changed files with 12 additions and 2 deletions
|
@ -1402,9 +1402,19 @@ skip:
|
||||||
<< "\r\non connection [" << epee::net_utils::print_connection_context_short(context)<< "]");
|
<< "\r\non connection [" << epee::net_utils::print_connection_context_short(context)<< "]");
|
||||||
|
|
||||||
context.m_state = cryptonote_connection_context::state_normal;
|
context.m_state = cryptonote_connection_context::state_normal;
|
||||||
|
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");
|
MGINFO_GREEN("SYNCHRONIZED OK");
|
||||||
on_connection_synchronized();
|
on_connection_synchronized();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MINFO(context << " we've reached this peer's blockchain height");
|
||||||
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//------------------------------------------------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue