quorum/pow/block.go

10 lines
108 B
Go

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