mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 14:15:53 +00:00
11 lines
133 B
Go
11 lines
133 B
Go
package pow
|
|
|
|
import "math/big"
|
|
|
|
type Block interface {
|
|
Difficulty() *big.Int
|
|
HashNoNonce() []byte
|
|
N() []byte
|
|
Number() *big.Int
|
|
}
|