Trait polkadot_runtime_parachains::paras::pallet::Config[][src]

pub trait Config: Config + Config + Config {
    type Origin: From<Origin> + From<<Self as Config>::Origin> + Into<Result<Origin, <Self as Config>::Origin>>;
    type Event: From<Event> + IsType<<Self as Config>::Event>;
    type WeightInfo: WeightInfo;
}
Expand description

Configuration trait of this pallet.

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

Associated Types

The outer origin type.

Weight information for extrinsics in this pallet.

Implementors