Added extra MO specific error status

This commit is contained in:
MoneroOcean 2019-09-20 15:07:02 -07:00
parent 814dda724e
commit 47ba0a015b

View file

@ -302,6 +302,10 @@ bool xmrig::Client::isCriticalError(const char *message)
return true;
}
if (strncasecmp(message, "Invalid job id", 14) == 0) {
return true;
}
return false;
}