git.delta.rocks / unique-network / refs/commits / 3bed4e0e0176

difftreelog

Duplicate lines removed

Dev2022-07-12parent: #e5ffee6.patch.diff
in: master

1 file changed

modifiedpallets/scheduler/src/lib.rsdiffbeforeafterboth
70//! with a specified priority.70//! with a specified priority.
71//! * `cancel` - cancel a scheduled dispatch, specified by block number and index.71//! * `cancel` - cancel a scheduled dispatch, specified by block number and index.
72//! * `schedule_named` - augments the `schedule` interface with an additional `Vec<u8>` parameter72//! * `schedule_named` - augments the `schedule` interface with an additional `Vec<u8>` parameter
73//! that can be used for identification.
74//! * `cancel_named` - the named complement to the cancel function.
75//!
76//! ## Interface
77//!
78//! ### Dispatchable Functions
79//!
80//! * `schedule` - schedule a dispatch, which may be periodic, to occur at a specified block and
81//! with a specified priority.
82//! * `cancel` - cancel a scheduled dispatch, specified by block number and index.
83//! * `schedule_named` - augments the `schedule` interface with an additional `Vec<u8>` parameter
84//! that can be used for identification.73//! that can be used for identification.
85//! * `cancel_named` - the named complement to the cancel function.74//! * `cancel_named` - the named complement to the cancel function.
8675