core: do not complain about low block rate if disconnected

In that case, we'll still keep the "Monero is now disconnected
from the network" near the end of the log
release-v0.7.1.0
moneromooo-monero 5 years ago
parent fd0cf689dd
commit 69f9420489
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1833,7 +1833,7 @@ namespace cryptonote
//-----------------------------------------------------------------------------------------------
bool core::check_block_rate()
{
if (m_offline || m_nettype == FAKECHAIN || m_target_blockchain_height > get_current_blockchain_height())
if (m_offline || m_nettype == FAKECHAIN || m_target_blockchain_height > get_current_blockchain_height() || m_target_blockchain_height == 0)
{
MDEBUG("Not checking block rate, offline or syncing");
return true;

Loading…
Cancel
Save