forked from cerc-io/plugeth
12 lines
166 B
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)
|
|
}
|