pow.go 156 B

12345678
  1. package pow
  2. type PoW interface {
  3. Search(block Block, stop <-chan struct{}) (uint64, []byte)
  4. Verify(block Block) bool
  5. GetHashrate() int64
  6. Turbo(bool)
  7. }