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