quorum/pow/block.go

10 lines
114 B
Go

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