Merge pull request #6566

567402c protocol: move the 'peer claims higher version' warning to debug (moneromooo-monero)
pull/320/head
luigi1111 4 years ago
commit f1334ebf64
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -308,9 +308,9 @@ namespace cryptonote
if (version >= 6 && version != hshd.top_version)
{
if (version < hshd.top_version && version == m_core.get_ideal_hard_fork_version())
MCLOG_RED(el::Level::Warning, "global", context << " peer claims higher version than we think (" <<
MDEBUG(context << " peer claims higher version than we think (" <<
(unsigned)hshd.top_version << " for " << (hshd.current_height - 1) << " instead of " << (unsigned)version <<
") - we may be forked from the network and a software upgrade may be needed");
") - we may be forked from the network and a software upgrade may be needed, or that peer is broken or malicious");
return false;
}
}

Loading…
Cancel
Save