cryptonote_protocol: fix missing space in version mismatch message

pull/95/head
moneromooo-monero 7 years ago
parent a0a8706946
commit 69f9a07553
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -273,7 +273,7 @@ namespace cryptonote
{ {
if (version < hshd.top_version) if (version < hshd.top_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 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"); ") - we may be forked from the network and a software upgrade may be needed");
return false; return false;
} }

Loading…
Cancel
Save