mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +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
@@ -187,12 +187,19 @@ decl_event! {
|
||||
<T as frame_system::Trait>::AccountId,
|
||||
Balance = BalanceOf<T>,
|
||||
{
|
||||
/// Create a new crowdfunding campaign. [fund_index]
|
||||
Created(FundIndex),
|
||||
/// Contributed to a crowd sale. [who, fund_index, amount]
|
||||
Contributed(AccountId, FundIndex, Balance),
|
||||
/// Withdrew full balance of a contributor. [who, fund_index, amount]
|
||||
Withdrew(AccountId, FundIndex, Balance),
|
||||
/// Fund is placed into retirement. [fund_index]
|
||||
Retiring(FundIndex),
|
||||
/// Fund is dissolved. [fund_index]
|
||||
Dissolved(FundIndex),
|
||||
/// The deploy data of the funded parachain is setted. [fund_index]
|
||||
DeployDataFixed(FundIndex),
|
||||
/// Onboarding process for a winning parachain fund is completed. [find_index, parachain_id]
|
||||
Onboarded(FundIndex, ParaId),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user