1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-08 08:23:34 -05:00

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; return true;
} }
if (strncasecmp(message, "Invalid job id", 14) == 0) {
return true;
}
return false; return false;
} }