aboutsummaryrefslogtreecommitdiffstats
path: root/pow/pow.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-05-07 02:20:54 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-05-07 02:20:54 +0800
commit1f26a1b86319f9468395e0772b5ae8f02cce8ec8 (patch)
tree3aa5255e7d82f4161b26bc60425fa0b026516007 /pow/pow.go
parentaa884c052ddf7c5e8f673972b34681982de1cd52 (diff)
parent054947def77bc2352f90f79206146c93dd5422d0 (diff)
downloadgo-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar.gz
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar.bz2
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar.lz
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar.xz
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.tar.zst
go-tangerine-1f26a1b86319f9468395e0772b5ae8f02cce8ec8.zip
Merge pull request #859 from Gustav-Simonsson/ethash_reloaded
Ethash reloaded
Diffstat (limited to 'pow/pow.go')
-rw-r--r--pow/pow.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/pow.go b/pow/pow.go
index 3908e5f76..73984a4ae 100644
--- a/pow/pow.go
+++ b/pow/pow.go
@@ -1,7 +1,7 @@
package pow
type PoW interface {
- Search(block Block, stop <-chan struct{}) (uint64, []byte, []byte)
+ Search(block Block, stop <-chan struct{}) (uint64, []byte)
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)