mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-02-22 21:17:35 +00:00
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
|
||
|
}
|