diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:38:34 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:38:34 -0500 |
commit | b82af557f50c68b86b18cd2a87d069908159c1d3 (patch) | |
tree | 43d4f140df73692f874c9a5f37416b5eac914a70 /src/cryptonote_protocol/cryptonote_protocol_handler.inl | |
parent | Merge pull request #6562 (diff) | |
parent | protocol: move the "peer claims higher version" warning to debug (diff) | |
download | monero-b82af557f50c68b86b18cd2a87d069908159c1d3.tar.xz |
Merge pull request #6567
cef39dc protocol: move the 'peer claims higher version' warning to debug (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_protocol/cryptonote_protocol_handler.inl')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index 7ec80104b..f0e0d17c9 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -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; } } |