From 525cefa37aafbc42de8911344c9853d950c06ded Mon Sep 17 00:00:00 2001 From: obscuren Date: Sat, 18 Apr 2015 15:14:44 +0200 Subject: updated ethash --- Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Godeps/_workspace/src/github.com/ethereum') diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go b/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go index c33bfccc4..74285a33c 100644 --- a/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go +++ b/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go @@ -91,7 +91,7 @@ func makeParamsAndCache(chainManager pow.ChainManager, blockNum uint64) (*Params return nil, err } - glog.V(logger.Info).Infoln("Making cache") + glog.V(logger.Info).Infof("Making cache for epoch: %d (%v) (%x)\n", paramsAndCache.Epoch, blockNum, seedHash) start := time.Now() C.ethash_mkcache(paramsAndCache.cache, paramsAndCache.params, (*C.ethash_blockhash_t)(unsafe.Pointer(&seedHash[0]))) @@ -387,7 +387,7 @@ func (pow *Ethash) verify(hash common.Hash, mixDigest common.Hash, difficulty *b if blockNum/epochLength < pow.paramsAndCache.Epoch { var err error // If we can't make the params for some reason, this block is invalid - pAc, err = makeParamsAndCache(pow.chainManager, blockNum+1) + pAc, err = makeParamsAndCache(pow.chainManager, blockNum) if err != nil { glog.V(logger.Info).Infoln("big fucking eror", err) return false -- cgit