Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Keep the same name
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-x-g committed Nov 4, 2022
1 parent b2a914c commit 195dbe6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frame/scheduler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,15 +277,15 @@ pub mod pallet {
/// Dispatched some task.
Dispatched {
task: TaskAddress<T::BlockNumber>,
id: Option<[u8; 32]>,
id: Option<TaskName>,
result: DispatchResult,
},
/// The call for the provided hash was not found so the task has been aborted.
CallUnavailable { task: TaskAddress<T::BlockNumber>, id: Option<[u8; 32]> },
CallUnavailable { task: TaskAddress<T::BlockNumber>, id: Option<TaskName> },
/// The given task was unable to be renewed since the agenda is full at that block.
PeriodicFailed { task: TaskAddress<T::BlockNumber>, id: Option<[u8; 32]> },
PeriodicFailed { task: TaskAddress<T::BlockNumber>, id: Option<TaskName> },
/// The given task can never be executed since it is overweight.
PermanentlyOverweight { task: TaskAddress<T::BlockNumber>, id: Option<[u8; 32]> },
PermanentlyOverweight { task: TaskAddress<T::BlockNumber>, id: Option<TaskName> },
}

#[pallet::error]
Expand Down

0 comments on commit 195dbe6

Please sign in to comment.