@@ -197,17 +197,13 @@ decl_event! {
197
197
BlockNumber = <T as system:: Trait >:: BlockNumber ,
198
198
CallHash = [ u8 ; 32 ]
199
199
{
200
- /// A new multisig operation has begun. First param is the account that is approving,
201
- /// second is the multisig account, third is hash of the call.
200
+ /// A new multisig operation has begun. [approving, multisig, call_hash]
202
201
NewMultisig ( AccountId , AccountId , CallHash ) ,
203
- /// A multisig operation has been approved by someone. First param is the account that is
204
- /// approving, third is the multisig account, fourth is hash of the call.
202
+ /// A multisig operation has been approved by someone. [approving, timepoint, multisig, call_hash]
205
203
MultisigApproval ( AccountId , Timepoint <BlockNumber >, AccountId , CallHash ) ,
206
- /// A multisig operation has been executed. First param is the account that is
207
- /// approving, third is the multisig account, fourth is hash of the call to be executed.
204
+ /// A multisig operation has been executed. [approving, timepoint, multisig, call_hash]
208
205
MultisigExecuted ( AccountId , Timepoint <BlockNumber >, AccountId , CallHash , DispatchResult ) ,
209
- /// A multisig operation has been cancelled. First param is the account that is
210
- /// cancelling, third is the multisig account, fourth is hash of the call.
206
+ /// A multisig operation has been cancelled. [cancelling, timepoint, multisig, call_hash]
211
207
MultisigCancelled ( AccountId , Timepoint <BlockNumber >, AccountId , CallHash ) ,
212
208
}
213
209
}
0 commit comments