Fix comments of indices pallet events (#7511)

Arguments for IndexAssigned and IndexFrozen were inverted in comments.
This commit is contained in:
Antoine Le Calvez
2020-11-10 14:17:30 +01:00
committed by GitHub
parent 2d114fb485
commit a75dd51f7d
+2 -2
View File
@@ -80,11 +80,11 @@ decl_event!(
<T as frame_system::Trait>::AccountId,
<T as Trait>::AccountIndex
{
/// A account index was assigned. \[who, index\]
/// A account index was assigned. \[index, who\]
IndexAssigned(AccountId, AccountIndex),
/// A account index has been freed up (unassigned). \[index\]
IndexFreed(AccountIndex),
/// A account index has been frozen to its current account ID. \[who, index\]
/// A account index has been frozen to its current account ID. \[index, who\]
IndexFrozen(AccountIndex, AccountId),
}
);