Skip to content

Commit

Permalink
Bugfix: minergate: Correct endian for 2nd winner_nonce
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Oct 2, 2014
1 parent b9c9e88 commit 53bf6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver-minergate.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ void minergate_poll(struct thr_info * const thr)
{
submit_nonce(thr, work, nonce);

nonce = upk_u32be(jobrsp, 0xc);
nonce = upk_u32le(jobrsp, 0xc);
if (nonce)
submit_nonce(thr, work, nonce);
}
Expand Down

0 comments on commit 53bf6ea

Please sign in to comment.