Trait pallet_sudo::pallet::Config
source · pub trait Config: Config {
type Event: From<Event<Self>> + IsType<<Self as Config>::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§
sourcetype Call: Parameter + UnfilteredDispatchable<Origin = Self::Origin> + GetDispatchInfo
type Call: Parameter + UnfilteredDispatchable<Origin = Self::Origin> + GetDispatchInfo
A sudo-able call.