neo-go/pkg/core/blockchainer/policer.go
2020-12-16 13:55:40 +03:00

10 lines
265 B
Go

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