aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/common.go
blob: def7936a50c0fe14f919f692fee408fb8a1c8b77 (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.Logs, error)
}