This commit is contained in:
Peter Vessenes 2014-01-09 21:26:49 -08:00
commit 6f58ef7fea

View file

@ -115,7 +115,7 @@ func Sum(sha hash.Hash) []byte {
func (dag *Dagger) Eval(N *big.Int) *big.Int {
pow := BigPow(2, 26)
dag.xn = N.Div(N, pow)
dag.xn = pow.Div(N, pow)
sha := sha3.NewKeccak224()
sha.Reset()