pub fn poke_deposit<T: Config>(
threshold: u16,
other_signatories: Vec<T::AccountId>,
call_hash: [u8; 32],
)
Expand description
Poke the deposit reserved for an existing multisig operation.
The dispatch origin for this call must be Signed and must be the original depositor of the multisig operation.
The transaction fee is waived if the deposit amount has changed.
threshold
: The total number of approvals needed for this multisig.other_signatories
: The accounts (other than the sender) who are part of the multisig.call_hash
: The hash of the call this deposit is reserved for.
Emits DepositPoked
if successful.
§Warning: Doc-Only
This function is an automatically generated, and is doc-only, uncallable
stub. See the real version in
Pallet::poke_deposit
.