threshold - 1
of other_signatories
.
Payment: DepositBase
will be reserved if this is the first approval, plus threshold
times DepositFactor
. It is returned once this dispatch happens or is cancelled.
The dispatch origin for this call must be Signed.
threshold
: The total number of approvals for this dispatch before it is executed.
other_signatories
: The accounts (other than the sender) who can approve this dispatch. May not be empty.
maybe_timepoint
: If this is the first approval, then this must be None
. If it is not the first approval, then it must be Some
, with the timepoint (block number and transaction index) of the first approval transaction.
call_hash
: The hash of the call to be executed.
as_multi
instead.
Namespace
threshold - 1
of other_signatories
.
If there are enough, then dispatch the call.
Payment: DepositBase
will be reserved if this is the first approval, plus threshold
times DepositFactor
. It is returned once this dispatch happens or is cancelled.
The dispatch origin for this call must be Signed.
threshold
: The total number of approvals for this dispatch before it is executed.
other_signatories
: The accounts (other than the sender) who can approve this dispatch. May not be empty.
maybe_timepoint
: If this is the first approval, then this must be None
. If it is not the first approval, then it must be Some
, with the timepoint (block number and transaction index) of the first approval transaction.
call
: The call to be executed.
approve_as_multi
instead, since it only requires a hash of the call.
Result is equivalent to the dispatched result if threshold
is exactly 1
. Otherwise on success, result is Ok
and the result from the interior call, if it was executed, may be found in the deposited MultisigExecuted
event.
Namespace
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.
threshold
: The total number of approvals for this dispatch before it is executed.
other_signatories
: The accounts (other than the sender) who can approve this dispatch. May not be empty.
timepoint
: The timepoint (block number and transaction index) of the first approval transaction for this dispatch.
call_hash
: The hash of the call to be executed.
4 + sizeof((BlockNumber, Balance, AccountId))
bytes and whose key size is 32 + sizeof(AccountId)
bytes.
Namespace