Select Git revision
verify-runtime-code.md
-
Hugo Trentesaux authored
* revert spec version will be managed in #195 * update instructions * update runtime version and documentation to generate it locally
Hugo Trentesaux authored* revert spec version will be managed in #195 * update instructions * update runtime version and documentation to generate it locally
runtime-calls.md 42.77 KiB
Runtime calls
Calls are categorized according to the dispatch origin they require:
- User calls: the dispatch origin for this kind of call must be signed by the transactor. This is the only call category that can be submitted with an extrinsic.
- Root calls: This kind of call requires a special origin that can only be invoked through on-chain governance mechanisms.
- Inherent calls: This kind of call is invoked by the author of the block itself (usually automatically by the node).
- Disabled calls: These calls can not be called directly, they are reserved for internal use by other runtime calls.
User calls
There are 69 user calls from 21 pallets.
Scheduler - 2
schedule - 0
schedule(when, maybe_periodic, priority, call)
when: T::BlockNumber
maybe_periodic: Option<schedule::Period<T::BlockNumber>>
priority: schedule::Priority
call: Box<<T as Config>::RuntimeCall>
Anonymously schedule a task.