@@ -462,26 +462,27 @@ decl_storage! {
462
462
463
463
decl_event ! (
464
464
pub enum Event <T > where AccountId = <T as frame_system:: Trait >:: AccountId , Balance = BalanceOf <T > {
465
- /// A name was set or reset (which will remove all judgements).
465
+ /// A name was set or reset (which will remove all judgements). [who]
466
466
IdentitySet ( AccountId ) ,
467
- /// A name was cleared, and the given balance returned.
467
+ /// A name was cleared, and the given balance returned. [who, deposit]
468
468
IdentityCleared ( AccountId , Balance ) ,
469
- /// A name was removed and the given balance slashed.
469
+ /// A name was removed and the given balance slashed. [who, deposit]
470
470
IdentityKilled ( AccountId , Balance ) ,
471
- /// A judgement was asked from a registrar.
471
+ /// A judgement was asked from a registrar. [who, registrar_index]
472
472
JudgementRequested ( AccountId , RegistrarIndex ) ,
473
- /// A judgement request was retracted.
473
+ /// A judgement request was retracted. [who, registrar_index]
474
474
JudgementUnrequested ( AccountId , RegistrarIndex ) ,
475
- /// A judgement was given by a registrar.
475
+ /// A judgement was given by a registrar. [target, registrar_index]
476
476
JudgementGiven ( AccountId , RegistrarIndex ) ,
477
- /// A registrar was added.
477
+ /// A registrar was added. [registrar_index]
478
478
RegistrarAdded ( RegistrarIndex ) ,
479
- /// A sub-identity (first) was added to an identity (second) and the deposit paid.
479
+ /// A sub-identity was added to an identity and the deposit paid. [sub, main, deposit]
480
480
SubIdentityAdded ( AccountId , AccountId , Balance ) ,
481
- /// A sub-identity (first) was removed from an identity (second) and the deposit freed.
481
+ /// A sub-identity was removed from an identity and the deposit freed.
482
+ /// [sub, main, deposit]
482
483
SubIdentityRemoved ( AccountId , AccountId , Balance ) ,
483
- /// A sub-identity (first arg) was cleared, and the given deposit repatriated from the
484
- /// main identity account (second arg) to the sub-identity account.
484
+ /// A sub-identity was cleared, and the given deposit repatriated from the
485
+ /// main identity account to the sub-identity account. [sub, main, deposit]
485
486
SubIdentityRevoked ( AccountId , AccountId , Balance ) ,
486
487
}
487
488
) ;
0 commit comments