Function pallet_utility::pallet::dispatchables::force_batch
source · pub fn force_batch<T: Config>(calls: Vec<<T as Config>::RuntimeCall>)
Expand description
Send a batch of dispatch calls.
Unlike batch
, it allows errors and won’t interrupt.
May be called from any origin except None
.
calls
: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit
(available in constant metadata).
If origin is root then the calls are dispatch without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter
).
Complexity
- O(C) where C is the number of calls to be batched.
Warning: Doc-Only
This function is an automatically generated, and is doc-only, uncallable
stub. See the real version in
Pallet::force_batch
.