git.delta.rocks / unique-network / refs/commits / 11416fe81ef7

difftreelog

fix cargo fmt

Daniel Shiposha2022-10-26parent: #ea487b7.patch.diff
in: master

1 file changed

modifiedpallets/scheduler/src/lib.rsdiffbeforeafterboth
88use frame_support::{88use frame_support::{
89 dispatch::{DispatchError, DispatchResult, Dispatchable, UnfilteredDispatchable, Parameter, GetDispatchInfo},89 dispatch::{
90 DispatchError, DispatchResult, Dispatchable, UnfilteredDispatchable, Parameter,
91 GetDispatchInfo,
92 },
90 traits::{93 traits::{
91 schedule::{self, DispatchTime, MaybeHashed},94 schedule::{self, DispatchTime, MaybeHashed},
233 type RuntimeCall: Parameter236 type RuntimeCall: Parameter
234 + Dispatchable<RuntimeOrigin = <Self as Config>::RuntimeOrigin, PostInfo = PostDispatchInfo>237 + Dispatchable<
238 RuntimeOrigin = <Self as Config>::RuntimeOrigin,
239 PostInfo = PostDispatchInfo,
235 + UnfilteredDispatchable<RuntimeOrigin = <Self as system::Config>::RuntimeOrigin>240 > + UnfilteredDispatchable<RuntimeOrigin = <Self as system::Config>::RuntimeOrigin>
236 + GetDispatchInfo241 + GetDispatchInfo
237 + From<system::Call<Self>>;242 + From<system::Call<Self>>;