No valid workinfo should be a share error not a share

This commit is contained in:
Con Kolivas 2014-09-13 22:54:40 +10:00
parent 956be4d8b1
commit 92a884f12a

View File

@ -1906,8 +1906,6 @@ static json_t *parse_submit(stratum_instance_t *client, json_t *json_msg,
sscanf(job_id, "%lx", &id);
sscanf(ntime, "%x", &ntime32);
share = true;
ck_rlock(&workbase_lock);
HASH_FIND_I64(workbases, &id, wb);
if (unlikely(!wb)) {
@ -1915,8 +1913,10 @@ static json_t *parse_submit(stratum_instance_t *client, json_t *json_msg,
json_set_string(json_msg, "reject-reason", SHARE_ERR(err));
strcpy(idstring, job_id);
ASPRINTF(&fname, "%s.sharelog", current_workbase->logdir);
goto out_unlock;
ck_runlock(&workbase_lock);
goto out;
}
share = true;
wdiff = wb->diff;
strcpy(idstring, wb->idstring);
ASPRINTF(&fname, "%s.sharelog", wb->logdir);