2020-11-27 10:55:48 +00:00
|
|
|
package blockchainer
|
|
|
|
|
|
|
|
// Policer is an interface that abstracts the implementation of policy methods.
|
|
|
|
type Policer interface {
|
2020-12-11 12:22:49 +00:00
|
|
|
GetBaseExecFee() int64
|
2020-11-27 10:55:48 +00:00
|
|
|
GetMaxVerificationGAS() int64
|
2020-12-14 09:41:23 +00:00
|
|
|
GetStoragePrice() int64
|
2021-03-24 17:32:48 +00:00
|
|
|
FeePerByte() int64
|
2020-11-27 10:55:48 +00:00
|
|
|
}
|