Merge pull request #3040

69f9a075 cryptonote_protocol: fix missing space in version mismatch message (moneromooo-monero)
pull/95/head
Riccardo Spagni 6 years ago
commit 5a312752af
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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;
}

Loading…
Cancel
Save