mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-25 22:14:36 +00:00
Parse reject reason from the stratum json error code if there is one.
This commit is contained in:
parent
9e0e61509d
commit
c6a3d065fa
12
cgminer.c
12
cgminer.c
@ -1885,6 +1885,18 @@ share_result(json_t *val, json_t *res, const struct work *work, char *hashshow,
|
|||||||
reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
|
reason[reasonLen + 2] = ')'; reason[reasonLen + 3] = '\0';
|
||||||
memcpy(disposition + 7, reasontmp, reasonLen);
|
memcpy(disposition + 7, reasontmp, reasonLen);
|
||||||
disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
|
disposition[6] = ':'; disposition[reasonLen + 7] = '\0';
|
||||||
|
} else if (work->stratum) {
|
||||||
|
json_t *arr_val = json_object_get(val, "error");
|
||||||
|
|
||||||
|
if (likely(json_is_array(arr_val))) {
|
||||||
|
char *json_reason = (char *)json_string_value(json_array_get(arr_val, 1));
|
||||||
|
|
||||||
|
if (likely(json_reason)) {
|
||||||
|
snprintf(reason, 31, "%s", json_reason);
|
||||||
|
free(json_reason);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else
|
} else
|
||||||
strcpy(reason, "");
|
strcpy(reason, "");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user