Remove "PROOF OF WORK FOUND?" debug output; redundant.
This commit is contained in:
parent
a816470950
commit
453101d9e9
1 changed files with 3 additions and 3 deletions
|
@ -203,12 +203,12 @@ static void submit_work(struct work *work)
|
||||||
json_t *val, *res;
|
json_t *val, *res;
|
||||||
char s[345];
|
char s[345];
|
||||||
|
|
||||||
printf("PROOF OF WORK FOUND? submitting...\n");
|
|
||||||
|
|
||||||
/* build hex string */
|
/* build hex string */
|
||||||
hexstr = bin2hex(work->data, sizeof(work->data));
|
hexstr = bin2hex(work->data, sizeof(work->data));
|
||||||
if (!hexstr)
|
if (!hexstr) {
|
||||||
|
fprintf(stderr, "submit_work OOM\n");
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
/* build JSON-RPC request */
|
/* build JSON-RPC request */
|
||||||
sprintf(s,
|
sprintf(s,
|
||||||
|
|
Loading…
Reference in a new issue