Merge pull request #4744

b3e8677c cryptonote: use logging functions for errors, not std::cout (moneromooo-monero)
pull/127/head
Riccardo Spagni 6 years ago
commit 148ac1a898
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

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