Browse Source

Use msg_id variable for clarity

master
Con Kolivas 10 years ago
parent
commit
df1465f275
  1. 5
      src/stratifier.c

5
src/stratifier.c

@ -3294,8 +3294,11 @@ out_unlock:
/* Submit share to upstream pool in proxy mode. We submit valid and /* Submit share to upstream pool in proxy mode. We submit valid and
* stale shares and filter out the rest. */ * stale shares and filter out the rest. */
if (wb && wb->proxy && submit) { if (wb && wb->proxy && submit) {
int msg_id = 0;
json_get_int(&msg_id, json_msg, "id");
LOGINFO("Submitting share upstream: %s", hexhash); LOGINFO("Submitting share upstream: %s", hexhash);
submit_share(client, id, nonce2, ntime, nonce, json_integer_value(json_object_get(json_msg, "id"))); submit_share(client, id, nonce2, ntime, nonce, msg_id);
} }
add_submit(ckp, client, diff, result, submit); add_submit(ckp, client, diff, result, submit);

Loading…
Cancel
Save