forked from TrueCloudLab/neoneo-go
1840c1c80d
Prices are defined in as a coefficients to `BaseExecFee` which is defined by Policy contract (TBD later). Native method prices are defined without need to multiply.
9 lines
240 B
Go
9 lines
240 B
Go
package blockchainer
|
|
|
|
// Policer is an interface that abstracts the implementation of policy methods.
|
|
type Policer interface {
|
|
GetBaseExecFee() int64
|
|
GetMaxBlockSize() uint32
|
|
GetMaxBlockSystemFee() int64
|
|
GetMaxVerificationGAS() int64
|
|
}
|