pub trait Config: Config {
    type BlockLimiter: BlockLimiter<Balance = u64>;
    type CurrentBlockNumber: Get<BlockNumberFor<Self>>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Required Associated Types§

source

type BlockLimiter: BlockLimiter<Balance = u64>

Block limits.

source

type CurrentBlockNumber: Get<BlockNumberFor<Self>>

Custom block number tracker.

Implementors§