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

import (
    "math/big"
    "github.com/ethereum/go-ethereum/state"
)

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