diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-06 00:00:22 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-06 00:00:22 +0800 |
commit | 3040296beb3a8ca991b738a83df0af7bddde2ac6 (patch) | |
tree | ee76b3cd6470b4847201c81f4146238784d9ecfe /Godeps | |
parent | 736aefe9b57ffe5fac3935a2b1eca16514b93c61 (diff) | |
download | go-tangerine-3040296beb3a8ca991b738a83df0af7bddde2ac6.tar.gz go-tangerine-3040296beb3a8ca991b738a83df0af7bddde2ac6.tar.zst go-tangerine-3040296beb3a8ca991b738a83df0af7bddde2ac6.zip |
updated ethash. closes 646
Diffstat (limited to 'Godeps')
-rw-r--r-- | Godeps/Godeps.json | 4 | ||||
-rw-r--r-- | Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index bc7ece021..3b04c5e11 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -22,8 +22,8 @@ }, { "ImportPath": "github.com/ethereum/ethash", - "Comment": "v23.1-72-g0ac34ad", - "Rev": "0ac34ad51ef0ffdae66b344603bb4e9e2a149b2a" + "Comment": "v23.1-73-g67a0e12", + "Rev": "67a0e12a091de035ef083186247e84be2d863c62" }, { "ImportPath": "github.com/ethereum/serpent-go", diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go b/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go index 6327e4c66..7291d58ba 100644 --- a/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go +++ b/Godeps/_workspace/src/github.com/ethereum/ethash/ethash.go @@ -326,7 +326,6 @@ func (pow *Ethash) Search(block pow.Block, stop <-chan struct{}) (uint64, []byte for { select { case <-stop: - powlogger.Infoln("Breaking from mining") pow.HashRate = 0 return 0, nil, nil default: |