updates: fix hash sanity checking

release-v0.5.1
moneromooo-monero 6 years ago
parent 0dddfeacc9
commit c5e2aee961
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -69,12 +69,12 @@ namespace tools
continue; continue;
bool alnum = true; bool alnum = true;
for (auto c: hash) for (auto c: fields[3])
if (!isalnum(c)) if (!isalnum(c))
alnum = false; alnum = false;
if (hash.size() != 64 && !alnum) if (fields[3].size() != 64 && !alnum)
{ {
MWARNING("Invalid hash: " << hash); MWARNING("Invalid hash: " << fields[3]);
continue; continue;
} }

Loading…
Cancel
Save