@@ -264,17 +264,21 @@ decl_event! {
264
264
pub enum Event <T > where
265
265
AccountId = <T as system:: Trait >:: AccountId ,
266
266
{
267
- /// A recovery process has been set up for an account
267
+ /// A recovery process has been set up for an [ account].
268
268
RecoveryCreated ( AccountId ) ,
269
- /// A recovery process has been initiated for account_1 by account_2
269
+ /// A recovery process has been initiated for lost account by rescuer account.
270
+ /// [lost, rescuer]
270
271
RecoveryInitiated ( AccountId , AccountId ) ,
271
- /// A recovery process for account_1 by account_2 has been vouched for by account_3
272
+ /// A recovery process for lost account by rescuer account has been vouched for by sender.
273
+ /// [lost, rescuer, sender]
272
274
RecoveryVouched ( AccountId , AccountId , AccountId ) ,
273
- /// A recovery process for account_1 by account_2 has been closed
275
+ /// A recovery process for lost account by rescuer account has been closed.
276
+ /// [lost, rescuer]
274
277
RecoveryClosed ( AccountId , AccountId ) ,
275
- /// Account_1 has been successfully recovered by account_2
278
+ /// Lost account has been successfully recovered by rescuer account.
279
+ /// [lost, rescuer]
276
280
AccountRecovered ( AccountId , AccountId ) ,
277
- /// A recovery process has been removed for an account
281
+ /// A recovery process has been removed for an [ account].
278
282
RecoveryRemoved ( AccountId ) ,
279
283
}
280
284
}
0 commit comments