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