go-ethereum/pow/block.go

11 lines
137 B
Go

package pow
import "math/big"
type Block interface {
Difficulty() *big.Int
HashNoNonce() []byte
Nonce() []byte
Number() *big.Int
}