@@ -660,19 +660,21 @@ decl_event! {
660
660
<T as frame_system:: Trait >:: AccountId ,
661
661
<T as frame_system:: Trait >:: Hash
662
662
{
663
- /// Contract deployed by address at the specified address.
663
+ /// Contract deployed by address at the specified address. [owner, contract]
664
664
Instantiated ( AccountId , AccountId ) ,
665
665
666
666
/// Contract has been evicted and is now in tombstone state.
667
- ///
667
+ /// [contract, tombstone]
668
+ ///
668
669
/// # Params
669
670
///
670
671
/// - `contract`: `AccountId`: The account ID of the evicted contract.
671
672
/// - `tombstone`: `bool`: True if the evicted contract left behind a tombstone.
672
673
Evicted ( AccountId , bool ) ,
673
674
674
675
/// Restoration for a contract has been successful.
675
- ///
676
+ /// [donor, dest, code_hash, rent_allowance]
677
+ ///
676
678
/// # Params
677
679
///
678
680
/// - `donor`: `AccountId`: Account ID of the restoring contract
@@ -682,12 +684,14 @@ decl_event! {
682
684
Restored ( AccountId , AccountId , Hash , Balance ) ,
683
685
684
686
/// Code with the specified hash has been stored.
687
+ /// [code_hash]
685
688
CodeStored ( Hash ) ,
686
689
687
- /// Triggered when the current schedule is updated.
690
+ /// Triggered when the current [ schedule] is updated.
688
691
ScheduleUpdated ( u32 ) ,
689
692
690
693
/// An event deposited upon execution of a contract from the account.
694
+ /// [account, data]
691
695
ContractExecution ( AccountId , Vec <u8 >) ,
692
696
}
693
697
}
0 commit comments