quorum/core/types/common.go

8 lines
103 B
Go
Raw Normal View History

package types
2015-02-04 15:05:47 -08:00
import "math/big"
type BlockProcessor interface {
2015-02-04 15:05:47 -08:00
Process(*Block) (*big.Int, error)
}