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

10 lines
229 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
GetMaxVerificationGAS() int64
GetStoragePrice() int64
FeePerByte() int64
2020-11-27 10:55:48 +00:00
}