forked from TrueCloudLab/neoneo-go
9 lines
216 B
Go
9 lines
216 B
Go
|
package blockchainer
|
||
|
|
||
|
// Policer is an interface that abstracts the implementation of policy methods.
|
||
|
type Policer interface {
|
||
|
GetMaxBlockSize() uint32
|
||
|
GetMaxBlockSystemFee() int64
|
||
|
GetMaxVerificationGAS() int64
|
||
|
}
|