pub trait BlockLimiter {
type BlockGasLimit: Get<Self::Balance>;
type Balance;
type GasAllowance: Limiter<Value = Self::Balance>;
}Expand description
Contains various limits for the block.
Required Associated Types§
Sourcetype BlockGasLimit: Get<Self::Balance>
type BlockGasLimit: Get<Self::Balance>
The maximum amount of gas that can be used within a single block.
Sourcetype GasAllowance: Limiter<Value = Self::Balance>
type GasAllowance: Limiter<Value = Self::Balance>
Type manages a gas that is available at the moment of call.