We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933d4f3 commit 929f1e4Copy full SHA for 929f1e4
src/lib.rs
@@ -95,11 +95,11 @@ decl_event!(
95
<T as frame_system::Trait>::AccountId,
96
<T as Trait>::AccountIndex
97
{
98
- /// A account index was assigned.
+ /// A account index was assigned. [who, index]
99
IndexAssigned(AccountId, AccountIndex),
100
- /// A account index has been freed up (unassigned).
+ /// A account index has been freed up (unassigned). [index]
101
IndexFreed(AccountIndex),
102
- /// A account index has been frozen to its current account ID.
+ /// A account index has been frozen to its current account ID. [who, index]
103
IndexFrozen(AccountIndex, AccountId),
104
}
105
);
0 commit comments