mirror of
https://github.com/status-im/op-geth.git
synced 2025-02-05 19:33:39 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
package pow
|
|
|
|
import "math/big"
|
|
|
|
type Block interface {
|
|
Difficulty() *big.Int
|
|
HashNoNonce() []byte
|
|
N() []byte
|
|
}
|