Skip to content
Snippets Groups Projects
Commit 8aedd256 authored by zjb0807's avatar zjb0807 Committed by GitHub
Browse files

Keep the same name (#12616)


Co-authored-by: default avatarx <x@localhost.localdomain>
parent 8b2ca711
Branches
No related merge requests found
......@@ -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]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment