aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpalomato <42439169+palomato@users.noreply.github.com>2019-12-14 13:06:09 -0500
committerGitHub <noreply@github.com>2019-12-14 13:06:09 -0500
commitbc6d8aa34303e29a20560f69399b562baee58561 (patch)
tree8a2dc3b3f2c8be7822742cc525b2191e4c614a3a
parentMerge pull request #6057 (diff)
downloadmonero-bc6d8aa34303e29a20560f69399b562baee58561.tar.xz
Corrected message typo
Message was "peer claims higher version that we think" Requested change "peer claims higher version than we think"
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
index e20934a25..a34d0b0d3 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl
+++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
@@ -314,7 +314,7 @@ 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 that we think (" <<
+ MCLOG_RED(el::Level::Warning, "global", 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");
return false;