plugeth/pow/pow.go
Matthew Wampler-Doty de9f79133f Introducing ethash
2015-03-02 22:29:34 -05:00

9 lines
164 B
Go

package pow
type PoW interface {
Search(block Block, stop <-chan struct{}) ([]byte, []byte, []byte)
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)
}