pub trait Config: Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type XcmExecutor: ExecuteXcm<Self::Call>;
    type ExecuteOverweightOrigin: EnsureOrigin<Self::Origin>;
}
Expand description

The module configuration trait.

Required Associated Types§

The overarching event type.

Origin which is allowed to execute overweight messages.

Implementors§