plugeth/chain/types/common.go
2014-12-03 14:05:19 +01:00

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)
}