quorum/pow/pow.go

9 lines
164 B
Go
Raw Normal View History

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