pub trait GetDispatchInfo {
    fn get_dispatch_info(&self) -> DispatchInfo;
}
Expand description

A Dispatchable function (aka transaction) that can carry some static information along with it, using the #[pallet::weight] attribute.

Required Methods§

Return a DispatchInfo, containing relevant information of this dispatch.

This is done independently of its encoded size.

Implementations on Foreign Types§

Implementation for unchecked extrinsic.

Implementation for checked extrinsic.

Implementation for test extrinsic.

Implementors§