pub trait Config: Config + Config + Config + Config + Config + Config + Config + Config + Config + Config + Config {
    type Randomness: Randomness<Self::Hash, Self::BlockNumber>;
    type ForceOrigin: EnsureOrigin<<Self as Config>::RuntimeOrigin>;
    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§

source

type Randomness: Randomness<Self::Hash, Self::BlockNumber>

A randomness beacon.

source

type ForceOrigin: EnsureOrigin<<Self as Config>::RuntimeOrigin>

An origin which is allowed to force updates to parachains.

source

type WeightInfo: WeightInfo

Weight information for extrinsics in this pallet.

Implementors§