mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 00:53:47 +00:00
9 lines
108 B
Go
9 lines
108 B
Go
package pow
|
|
|
|
import "math/big"
|
|
|
|
type Block interface {
|
|
Diff() *big.Int
|
|
HashNoNonce() []byte
|
|
N() []byte
|
|
}
|