Browse Source

Revert "Parse reject reason from the stratum json error code if there is one."

This reverts commit c6a3d065fa6c19191af3709fc5b138faf0c0fafb.

Segfaults. Needs work.
Con Kolivas 13 years ago
parent
commit
310239b8e8
1 changed files with 0 additions and 12 deletions
  1. 0 12
      cgminer.c

+ 0 - 12
cgminer.c

@@ -1885,18 +1885,6 @@ 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, "");