Skip to content

Commit

Permalink
Merge pull request #59 from pallas1/patch-1
Browse files Browse the repository at this point in the history
Fixed hashrate reporting
  • Loading branch information
sp-hash committed Aug 31, 2016
2 parents a870ce7 + b4bb37b commit 8af2644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skein.cu
Expand Up @@ -111,8 +111,8 @@ int scanhash_skeincoin(int thr_id, uint32_t *pdata,
res++;
}
}
pdata[19] = swab32_if(foundnonces[thr_id][0], !swap);
*hashes_done = pdata[19] - first_nonce + throughput;
pdata[19] = swab32_if(foundnonces[thr_id][0], !swap);
return res;
}
else
Expand Down

0 comments on commit 8af2644

Please sign in to comment.