cryptonote: use logging functions for errors, not std::cout

pull/127/head
moneromooo-monero 6 years ago
parent 4cbb476cd1
commit b3e8677c70
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -328,7 +328,7 @@ bool parse_hash256(const std::string str_hash, crypto::hash& hash)
bool res = epee::string_tools::parse_hexstr_to_binbuff(str_hash, buf);
if (!res || buf.size() != sizeof(crypto::hash))
{
std::cout << "invalid hash format: <" << str_hash << '>' << std::endl;
MERROR("invalid hash format: " << str_hash);
return false;
}
else

Loading…
Cancel
Save