Improve nicehash detection.
This commit is contained in:
parent
955134b162
commit
f4dadfd90b
2 changed files with 10 additions and 2 deletions
|
@ -82,7 +82,15 @@ bool Job::setBlob(const char *blob)
|
|||
return false;
|
||||
}
|
||||
|
||||
return fromHex(blob, m_size * 2, m_blob);
|
||||
if (!fromHex(blob, m_size * 2, m_blob)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (*nonce() != 0 && !m_nicehash) {
|
||||
m_nicehash = true;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue