pub trait UtilityProvider<Origin, RuntimeCall> {
    // Required method
    fn batch_all(
        origin: Origin,
        calls: Vec<RuntimeCall>
    ) -> DispatchResultWithPostInfo;
}
Expand description

The provider for interfacing into the Utility pallet.

Required Methods§

source

fn batch_all( origin: Origin, calls: Vec<RuntimeCall> ) -> DispatchResultWithPostInfo

Passthrough into the Utility::batch_all call

Object Safety§

This trait is not object safe.

Implementors§