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