mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-24 06:41:06 +00:00
Annotated parameter names for events (#1440)
* annotated parameter names for events * Update runtime/parachains/src/inclusion.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
8eecdd61b8
commit
d2c4e0cc8e
@@ -107,19 +107,19 @@ decl_event!(
|
||||
Balance = BalanceOf<T>,
|
||||
BlockNumber = <T as frame_system::Trait>::BlockNumber,
|
||||
{
|
||||
/// A new account was created
|
||||
/// A [new] account was created.
|
||||
AccountCreated(AccountId),
|
||||
/// Someone's account validity was updated
|
||||
/// Someone's account validity was updated. [who, validity]
|
||||
ValidityUpdated(AccountId, AccountValidity),
|
||||
/// Someone's purchase balance was updated. (Free, Locked)
|
||||
/// Someone's purchase balance was updated. [who, free, locked]
|
||||
BalanceUpdated(AccountId, Balance, Balance),
|
||||
/// A payout was made to a purchaser.
|
||||
/// A payout was made to a purchaser. [who, free, locked]
|
||||
PaymentComplete(AccountId, Balance, Balance),
|
||||
/// A new payment account was set.
|
||||
/// A new payment account was set. [who]
|
||||
PaymentAccountSet(AccountId),
|
||||
/// A new statement was set.
|
||||
StatementUpdated,
|
||||
/// A new statement was set.
|
||||
/// A new statement was set. [block_number]
|
||||
UnlockBlockUpdated(BlockNumber),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user