mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
9 lines
229 B
Go
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
|
|
}
|