diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-31 17:32:57 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-31 17:32:57 +0000 |
| commit | 69f9a075534804ebd755fa25794da8096afe3d8b (patch) | |
| tree | 3404427e587a2c767a7da3af2431c8bdfa8922ac | |
| parent | a0a8706946c0c7b9112678ffefa3354a04f7a020 (diff) | |
| download | monzero-core-69f9a075534804ebd755fa25794da8096afe3d8b.tar.gz monzero-core-69f9a075534804ebd755fa25794da8096afe3d8b.tar.xz monzero-core-69f9a075534804ebd755fa25794da8096afe3d8b.zip | |
cryptonote_protocol: fix missing space in version mismatch message
| -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 8aef31a5a..d5836f01b 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -273,7 +273,7 @@ namespace cryptonote { if (version < hshd.top_version) MCLOG_RED(el::Level::Warning, "global", context << " peer claims higher version that we think (" << - (unsigned)hshd.top_version << " for " << (hshd.current_height - 1) << "instead of " << (unsigned)version << + (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; } |
