aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-01-25 16:44:51 -0800
committerRiccardo Spagni <ric@spagni.net>2018-01-25 16:44:51 -0800
commit5a312752afb80d6a57aaec68ca53a8ed46580c7d (patch)
tree8cade1f6f808deb8908d41d6aabc5ab8dc0acd50 /src
parent153e319cd453443ec2f63c2bc9733473e5662d58 (diff)
parent69f9a075534804ebd755fa25794da8096afe3d8b (diff)
downloadmonzero-core-5a312752afb80d6a57aaec68ca53a8ed46580c7d.tar.gz
monzero-core-5a312752afb80d6a57aaec68ca53a8ed46580c7d.tar.xz
monzero-core-5a312752afb80d6a57aaec68ca53a8ed46580c7d.zip
Merge pull request #3040
69f9a075 cryptonote_protocol: fix missing space in version mismatch message (moneromooo-monero)
Diffstat (limited to 'src')
-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 6c350775d..700eceff3 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;
}