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