aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/common.go
blob: 7953749594e63912a5a15ca1dd8c272145ac8a02 (plain) (blame)
1
2
3
4
5
6
7
package types

import "math/big"

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