plugeth/pow/pow.go

9 lines
164 B
Go
Raw Normal View History

2014-12-10 15:45:16 +00:00
package pow
type PoW interface {
2015-02-28 19:58:37 +00:00
Search(block Block, stop <-chan struct{}) ([]byte, []byte, []byte)
2014-12-10 15:45:16 +00:00
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)
}