neoneo-go/pkg/core/blockchainer/policer.go
2020-12-10 18:17:31 +03:00

8 lines
216 B
Go

package blockchainer
// Policer is an interface that abstracts the implementation of policy methods.
type Policer interface {
GetMaxBlockSize() uint32
GetMaxBlockSystemFee() int64
GetMaxVerificationGAS() int64
}