Trait frame_support::dispatch::UnfilteredDispatchable [−][src]
pub trait UnfilteredDispatchable {
type Origin;
fn dispatch_bypass_filter(
self,
origin: Self::Origin
) -> DispatchResultWithPostInfo;
}Expand description
Type that can be dispatched with an origin but without checking the origin filter.
Implemented for pallet dispatchable type by decl_module and for runtime dispatchable by
construct_runtime.
Associated Types
Required methods
fn dispatch_bypass_filter(
self,
origin: Self::Origin
) -> DispatchResultWithPostInfo
fn dispatch_bypass_filter(
self,
origin: Self::Origin
) -> DispatchResultWithPostInfoDispatch this call but do not check the filter in origin.