pub trait Config: Config + Config + Config + SendTransactionTypes<Call<Self>> {
    type RuntimeEvent: From<Event> + IsType<<Self as Config>::RuntimeEvent>;
    type UnsignedPriority: Get<TransactionPriority>;
    type NextSessionRotation: EstimateNextSessionRotation<Self::BlockNumber>;
    type WeightInfo: WeightInfo;
}
Expand description

Configuration trait of this pallet.

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

Required Associated Types§

Implementors§