mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-16 15:57:38 +00:00
Stratum: better check of the login response
This commit is contained in:
parent
f9c4c57216
commit
b49197f808
1 changed files with 5 additions and 0 deletions
|
@ -609,6 +609,11 @@ bool xmrig::Client::parseLogin(const rapidjson::Value &result, int *code)
|
|||
|
||||
parseExtensions(result);
|
||||
|
||||
if (!result.HasMember("job")) {
|
||||
*code = 2;
|
||||
return false;
|
||||
}
|
||||
|
||||
const bool rc = parseJob(result["job"], code);
|
||||
m_jobs = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue