mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 05:47:58 +00:00
More app-friendly event description (#6684)
* More app-friendly event description * change origin -> owner * checked all decl_event! and changed decriptions. * annotated parameter names for remaining events
This commit is contained in:
committed by
GitHub
parent
8ae4faba51
commit
bbabb17426
@@ -95,11 +95,11 @@ decl_event!(
|
||||
<T as frame_system::Trait>::AccountId,
|
||||
<T as Trait>::AccountIndex
|
||||
{
|
||||
/// A account index was assigned.
|
||||
/// A account index was assigned. [who, index]
|
||||
IndexAssigned(AccountId, AccountIndex),
|
||||
/// A account index has been freed up (unassigned).
|
||||
/// A account index has been freed up (unassigned). [index]
|
||||
IndexFreed(AccountIndex),
|
||||
/// A account index has been frozen to its current account ID.
|
||||
/// A account index has been frozen to its current account ID. [who, index]
|
||||
IndexFrozen(AccountIndex, AccountId),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user