mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 13:01:07 +00:00
Fix comments of indices pallet events (#7511)
Arguments for IndexAssigned and IndexFrozen were inverted in comments.
This commit is contained in:
committed by
GitHub
parent
2d114fb485
commit
a75dd51f7d
@@ -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),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user