mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-27 08:07:22 +00:00
9 lines
114 B
Go
9 lines
114 B
Go
package pow
|
|
|
|
import "math/big"
|
|
|
|
type Block interface {
|
|
Difficulty() *big.Int
|
|
HashNoNonce() []byte
|
|
N() []byte
|
|
}
|