1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

remove unnecessary memcpy

The next operation is flipping the merkleroot on the same
destination.

Signed-off-by: Olivier Langlois <olivier@olivierlanglois.net>
This commit is contained in:
Olivier Langlois 2013-07-29 23:53:20 -04:00
parent bda1e33322
commit c31ff57277

View File

@ -1718,7 +1718,6 @@ static void gen_gbt_work(struct pool *pool, struct work *work)
work->job_id = strdup(pool->gbt_workid); work->job_id = strdup(pool->gbt_workid);
cg_runlock(&pool->gbt_lock); cg_runlock(&pool->gbt_lock);
memcpy(work->data + 4 + 32, merkleroot, 32);
flip32(work->data + 4 + 32, merkleroot); flip32(work->data + 4 + 32, merkleroot);
free(merkleroot); free(merkleroot);
memset(work->data + 4 + 32 + 32 + 4 + 4, 0, 4); /* nonce */ memset(work->data + 4 + 32 + 32 + 4 + 4, 0, 4); /* nonce */