mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 22:16:45 +01:00
9 lines
146 B
Go
9 lines
146 B
Go
package pow
|
|
|
|
type PoW interface {
|
|
Search(block Block, stop <-chan struct{}) []byte
|
|
Verify(block Block) bool
|
|
GetHashrate() int64
|
|
Turbo(bool)
|
|
}
|