mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +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
@@ -171,9 +171,10 @@ decl_storage! {
|
||||
decl_event!(
|
||||
pub enum Event<T> where AccountId = <T as frame_system::Trait>::AccountId, Balance = BalanceOf<T> {
|
||||
/// The amount vested has been updated. This could indicate more funds are available. The
|
||||
/// balance given is the amount which is left unvested (and thus locked).
|
||||
/// balance given is the amount which is left unvested (and thus locked).
|
||||
/// [account, unvested]
|
||||
VestingUpdated(AccountId, Balance),
|
||||
/// An account (given) has become fully vested. No further vesting can happen.
|
||||
/// An [account] has become fully vested. No further vesting can happen.
|
||||
VestingCompleted(AccountId),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user