updates: fix hash sanity checking

This commit is contained in:
moneromooo-monero
2018-08-05 00:19:22 +00:00
parent 0dddfeacc9
commit c5e2aee961

View File

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