We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74641a commit 3ef8c32Copy full SHA for 3ef8c32
src/lib.rs
@@ -195,11 +195,12 @@ decl_event!(
195
AccountId = <T as system::Trait>::AccountId,
196
PendingSwap = PendingSwap<T>,
197
{
198
- /// Swap created.
+ /// Swap created. [account, proof, swap]
199
NewSwap(AccountId, HashedProof, PendingSwap),
200
- /// Swap claimed. The last parameter indicates whether the execution succeeds.
+ /// Swap claimed. The last parameter indicates whether the execution succeeds.
201
+ /// [account, proof, success]
202
SwapClaimed(AccountId, HashedProof, bool),
- /// Swap cancelled.
203
+ /// Swap cancelled. [account, proof]
204
SwapCancelled(AccountId, HashedProof),
205
}
206
);
0 commit comments