mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-23 11:57:17 +00:00
9 lines
156 B
Go
9 lines
156 B
Go
package pow
|
|
|
|
type PoW interface {
|
|
Search(block Block, stop <-chan struct{}) (uint64, []byte)
|
|
Verify(block Block) bool
|
|
GetHashrate() int64
|
|
Turbo(bool)
|
|
}
|