mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +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
@@ -195,11 +195,12 @@ decl_event!(
|
||||
AccountId = <T as system::Trait>::AccountId,
|
||||
PendingSwap = PendingSwap<T>,
|
||||
{
|
||||
/// Swap created.
|
||||
/// Swap created. [account, proof, swap]
|
||||
NewSwap(AccountId, HashedProof, PendingSwap),
|
||||
/// Swap claimed. The last parameter indicates whether the execution succeeds.
|
||||
/// Swap claimed. The last parameter indicates whether the execution succeeds.
|
||||
/// [account, proof, success]
|
||||
SwapClaimed(AccountId, HashedProof, bool),
|
||||
/// Swap cancelled.
|
||||
/// Swap cancelled. [account, proof]
|
||||
SwapCancelled(AccountId, HashedProof),
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user