pub trait Config: Config + Config {
    type Event: From<Event<Self>> + IsType<Self::Event> + Into<Self::Event>;
    type Call: Parameter + UnfilteredDispatchable<Origin = Self::Origin> + GetDispatchInfo;
}
Expand description

Configuration trait of this pallet.

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

Required Associated Types§

source

type Event: From<Event<Self>> + IsType<Self::Event> + Into<Self::Event>

The overarching event type.

source

type Call: Parameter + UnfilteredDispatchable<Origin = Self::Origin> + GetDispatchInfo

The dispatchable that master may call as Root. It is possible to use another type here, but it’s expected that your runtime::Call will be used. Master’s call should bypass any filter.

Implementors§