neoneo-go/pkg/core/blockchainer/policer.go
2021-03-26 19:14:46 +03:00

9 lines
229 B
Go

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