mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57: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
@@ -700,13 +700,14 @@ decl_module! {
|
||||
|
||||
decl_event!(
|
||||
pub enum Event<T> where <T as frame_system::Trait>::AccountId {
|
||||
/// reaped voter, reaper
|
||||
/// Reaped [voter, reaper].
|
||||
VoterReaped(AccountId, AccountId),
|
||||
/// slashed reaper
|
||||
/// Slashed [reaper].
|
||||
BadReaperSlashed(AccountId),
|
||||
/// A tally (for approval votes of seat(s)) has started.
|
||||
/// A tally (for approval votes of [seats]) has started.
|
||||
TallyStarted(u32),
|
||||
/// A tally (for approval votes of seat(s)) has ended (with one or more new members).
|
||||
/// A tally (for approval votes of seat(s)) has ended (with one or more new members).
|
||||
/// [incoming, outgoing]
|
||||
TallyFinalized(Vec<AccountId>, Vec<AccountId>),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user