Skip to content

Commit

Permalink
Have progPowHash() (pseudo-)code return "result", not "digest"
Browse files Browse the repository at this point in the history
  • Loading branch information
solardiz committed May 5, 2019
1 parent 353d0d8 commit 7b2d7e8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,7 @@ hash32_t progPowHash(
digest.uint32s[l%8] = fnv1a(digest.uint32s[l%8], digest_lane[l]);
// keccak(header .. keccak(header..nonce) .. digest);
keccak_f800_progpow(header, seed, digest);
return digest;
return keccak_f800_progpow(header, seed, digest);
}
```

Expand Down

0 comments on commit 7b2d7e8

Please sign in to comment.