aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/common.go
blob: ba88b77e1aebfa6eb813cedd3689ee93682b8d41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package types

import (
    "math/big"

    "github.com/ethereum/go-ethereum/state"
)

type BlockProcessor interface {
    Process(*Block) (*big.Int, state.Messages, error)
}