neo-go/pkg/core/blockchainer/policer.go

10 lines
240 B
Go
Raw Normal View History

2020-11-27 10:55:48 +00:00
package blockchainer
// Policer is an interface that abstracts the implementation of policy methods.
type Policer interface {
GetBaseExecFee() int64
2020-11-27 10:55:48 +00:00
GetMaxBlockSize() uint32
GetMaxBlockSystemFee() int64
GetMaxVerificationGAS() int64
}