quorum/core/types/common.go

12 lines
166 B
Go

package types
import (
"math/big"
"github.com/ethereum/go-ethereum/state"
)
type BlockProcessor interface {
Process(*Block) (*big.Int, state.Messages, error)
}