quorum/core/types/common.go

8 lines
103 B
Go

package types
import "math/big"
type BlockProcessor interface {
Process(*Block) (*big.Int, error)
}