mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
cryptonote: use logging functions for errors, not std::cout
This commit is contained in:
parent
4cbb476cd1
commit
b3e8677c70
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue