quorum/core/types/common.go

12 lines
166 B
Go
Raw Normal View History

package types
import (
"math/big"
2014-12-03 05:05:19 -08:00
"github.com/ethereum/go-ethereum/state"
)
type BlockProcessor interface {
2014-12-03 05:05:19 -08:00
Process(*Block) (*big.Int, state.Messages, error)
}