Merge pull request #4224
c5e2aee
updates: fix hash sanity checking (moneromooo-monero)
This commit is contained in:
commit
4e6187faf3
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue