diff options
| author | palomato <42439169+palomato@users.noreply.github.com> | 2019-12-14 13:06:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-14 13:06:09 -0500 |
| commit | bc6d8aa34303e29a20560f69399b562baee58561 (patch) | |
| tree | 8a2dc3b3f2c8be7822742cc525b2191e4c614a3a /src/cryptonote_protocol | |
| parent | b4e1dc83d275f8ee9a8c12615cf952f05161c7a3 (diff) | |
| download | monzero-core-bc6d8aa34303e29a20560f69399b562baee58561.tar.gz monzero-core-bc6d8aa34303e29a20560f69399b562baee58561.tar.xz monzero-core-bc6d8aa34303e29a20560f69399b562baee58561.zip | |
Corrected message typo
Message was "peer claims higher version that we think"
Requested change "peer claims higher version than we think"
Diffstat (limited to 'src/cryptonote_protocol')
| -rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 2 |
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; |
