Function pallet_multisig::pallet::dispatchables::as_multi_threshold_1
source · pub fn as_multi_threshold_1<T: Config>(
other_signatories: Vec<T::AccountId>,
call: Box<<T as Config>::RuntimeCall>,
)
Expand description
Immediately dispatch a multi-signature call using a single approval from the caller.
The dispatch origin for this call must be Signed.
other_signatories
: The accounts (other than the sender) who are part of the multi-signature, but do not participate in the approval process.call
: The call to be executed.
Result is equivalent to the dispatched result.
§Complexity
O(Z + C) where Z is the length of the call and C its execution weight.
§Warning: Doc-Only
This function is an automatically generated, and is doc-only, uncallable
stub. See the real version in
Pallet::as_multi_threshold_1
.