forked from TrueCloudLab/neoneo-go
8 lines
209 B
Go
8 lines
209 B
Go
package blockchainer
|
|
|
|
// Policer is an interface that abstracts the implementation of policy methods.
|
|
type Policer interface {
|
|
GetBaseExecFee() int64
|
|
GetMaxVerificationGAS() int64
|
|
GetStoragePrice() int64
|
|
}
|