Skip to content

Commit

Permalink
Merge pull request #114 from marktwtn/fix-pure-C-PoW
Browse files Browse the repository at this point in the history
Fix returned value of nonce value
  • Loading branch information
jserv committed Feb 22, 2019
2 parents 5e500f0 + ca23b1d commit ea1dfdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pow_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static long long int loop_cpu(uint64_t *lmid,
return i * 64;
}
}
return -i * 64 + 1;
return -i * 64 - 1;
}

static void para(int8_t in[], uint64_t l[], uint64_t h[])
Expand Down

0 comments on commit ea1dfdf

Please sign in to comment.