cryptonote_protocol_handler: log versions as unsigned ints

They're interpreted as characters otherwise
This commit is contained in:
moneromooo-monero 2017-08-09 23:21:11 +01:00
parent 181a008aa3
commit 88e83f9427
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -260,7 +260,7 @@ namespace cryptonote
const uint8_t version = m_core.get_blockchain_storage().get_ideal_hard_fork_version(hshd.current_height - 1);
if (version >= 6 && version != hshd.top_version)
{
LOG_DEBUG_CC(context, "Ignoring due to wrong top version (" << hshd.top_version << ", expected " << version);
LOG_DEBUG_CC(context, "Ignoring due to wrong top version " << (unsigned)hshd.top_version << ", expected " << (unsigned)version);
return false;
}