11 lines
183 B
Go
11 lines
183 B
Go
|
package types
|
||
|
|
||
|
import (
|
||
|
"math/big"
|
||
|
"github.com/ethereum/go-ethereum/state"
|
||
|
)
|
||
|
|
||
|
type BlockProcessor interface {
|
||
|
ProcessWithParent(*Block, *Block) (*big.Int, state.Messages, error)
|
||
|
}
|