We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 203ad97 commit a42b1b2Copy full SHA for a42b1b2
auction/src/lib.rs
@@ -44,7 +44,7 @@ decl_event!(
44
<T as Trait>::Balance,
45
<T as Trait>::AuctionId,
46
{
47
- /// A bid is placed (auction_id, bidder, bidding_amount)
+ /// A bid is placed. [auction_id, bidder, bidding_amount]
48
Bid(AuctionId, AccountId, Balance),
49
}
50
);
currencies/src/lib.rs
@@ -92,13 +92,13 @@ decl_event!(
92
Balance = BalanceOf<T>,
93
CurrencyId = CurrencyIdOf<T>
94
95
- /// Currency transfer success (currency_id, from, to, amount)
+ /// Currency transfer success. [currency_id, from, to, amount]
96
Transferred(CurrencyId, AccountId, AccountId, Balance),
97
- /// Update balance success (currency_id, who, amount)
+ /// Update balance success. [currency_id, who, amount]
98
BalanceUpdated(CurrencyId, AccountId, Amount),
99
- /// Deposit success (currency_id, who, amount)
+ /// Deposit success. [currency_id, who, amount]
100
Deposited(CurrencyId, AccountId, Balance),
101
- /// Withdraw success (currency_id, who, amount)
+ /// Withdraw success. [currency_id, who, amount]
102
Withdrawn(CurrencyId, AccountId, Balance),
103
104
gradually-update/src/lib.rs
@@ -68,11 +68,11 @@ decl_event!(
68
pub enum Event<T> where
69
<T as frame_system::Trait>::BlockNumber,
70
71
- /// Gradually update added (key, per_block, target_value)
+ /// Gradually update added. [key, per_block, target_value]
72
GraduallyUpdateAdded(StorageKey, StorageValue, StorageValue),
73
- /// Gradually update cancelled (key)
+ /// Gradually update cancelled. [key]
74
GraduallyUpdateCancelled(StorageKey),
75
- /// Gradually update applied (block_number, key, target_value)
+ /// Gradually update applied. [block_number, key, target_value]
76
Updated(BlockNumber, StorageKey, StorageValue),
77
78
oracle/src/lib.rs
@@ -188,7 +188,7 @@ decl_event!(
188
<T as Trait>::OracleKey,
189
<T as Trait>::OracleValue,
190
191
- /// New feed data is submitted (sender, values)
+ /// New feed data is submitted. [sender, values]
192
NewFeedData(AccountId, Vec<(OracleKey, OracleValue)>),
193
194
schedule-update/src/lib.rs
@@ -34,13 +34,13 @@ decl_event!(
34
35
36
37
- /// Add schedule dispatch success (BlockNumber, DispatchId)
+ /// Add schedule dispatch success. [block_number, dispatch_id]
38
ScheduleDispatch(BlockNumber, DispatchId),
39
- /// Cancel delayed dispatch success (DispatchId)
+ /// Cancel delayed dispatch success. [dispatch_id]
40
CancelDelayedDispatch(DispatchId),
41
- /// Schedule dispatch success (BlockNumber, DispatchId)
+ /// Schedule dispatch success. [block_number, dispatch_id]
42
ScheduleDispatchSuccess(BlockNumber, DispatchId),
43
- /// Schedule dispatch failed (DispatchId, DispatchError)
+ /// Schedule dispatch failed. [dispatch_id, dispatch_error]
ScheduleDispatchFail(DispatchId, DispatchError),
tokens/src/lib.rs
@@ -176,7 +176,7 @@ decl_event!(
176
<T as Trait>::CurrencyId,
177
<T as Trait>::Balance
178
179
- /// Token transfer success (currency_id, from, to, amount)
+ /// Token transfer success. [currency_id, from, to, amount]
180
181
182
vesting/src/lib.rs
@@ -138,11 +138,11 @@ decl_event!(
138
139
VestingSchedule = VestingScheduleOf<T>
140
141
- /// Added new vesting schedule (from, to, vesting_schedule)
+ /// Added new vesting schedule. [from, to, vesting_schedule]
142
VestingScheduleAdded(AccountId, AccountId, VestingSchedule),
143
- /// Claimed vesting (who, locked_amount)
+ /// Claimed vesting. [who, locked_amount]
144
Claimed(AccountId, Balance),
145
- /// Updated vesting schedules (who)
+ /// Updated vesting schedules. [who]
146
VestingSchedulesUpdated(AccountId),
147
148
0 commit comments