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-02-28 11:58:37 -08:00
Search(block Block, stop <-chan struct{}) ([]byte, []byte, []byte)
2014-12-10 07:45:16 -08:00
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)
}