quorum/pow/pow.go

9 lines
156 B
Go
Raw Normal View History

2014-12-10 07:45:16 -08:00
package pow
type PoW interface {
Search(block Block, stop <-chan struct{}) (uint64, []byte)
2014-12-10 07:45:16 -08:00
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)
}