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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.