mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
updates: fix hash sanity checking
This commit is contained in:
parent
0dddfeacc9
commit
c5e2aee961
1 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue