pub trait UtilityPallet<C: Chain> {
// Required method
fn build_batch_call(calls: Vec<C::Call>) -> C::Call;
}
Expand description
Trait that provides functionality defined inside pallet-utility
Required Methods§
sourcefn build_batch_call(calls: Vec<C::Call>) -> C::Call
fn build_batch_call(calls: Vec<C::Call>) -> C::Call
Create batch call from given calls vector.
Object Safety§
This trait is not object safe.