op-geth/pow/pow.go

9 lines
164 B
Go
Raw Normal View History

2014-12-10 16:45:16 +01:00
package pow
type PoW interface {
2015-03-03 21:04:31 +01:00
Search(block Block, stop <-chan struct{}) (uint64, []byte, []byte)
2014-12-10 16:45:16 +01:00
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)
}