From 3a726f53f9a08345df4fde90c92e9755afddc93d Mon Sep 17 00:00:00 2001 From: srdtrk Date: Tue, 5 Nov 2024 23:03:38 +0800 Subject: [PATCH] imp: added missing natspec --- contracts/src/msgs/IMisbehaviourMsgs.sol | 1 + contracts/src/msgs/IUpdateClientMsgs.sol | 1 + 2 files changed, 2 insertions(+) diff --git a/contracts/src/msgs/IMisbehaviourMsgs.sol b/contracts/src/msgs/IMisbehaviourMsgs.sol index bc5f8bb..85177a4 100644 --- a/contracts/src/msgs/IMisbehaviourMsgs.sol +++ b/contracts/src/msgs/IMisbehaviourMsgs.sol @@ -14,6 +14,7 @@ interface IMisbehaviourMsgs is IICS07TendermintMsgs { } /// @notice The public value output for the sp1 misbehaviour program. + /// @param clientState The client state that was used to verify the misbehaviour. /// @param time The time which the misbehaviour was verified in seconds. /// @param trustedHeight1 The trusted height of header 1 /// @param trustedHeight2 The trusted height of header 2 diff --git a/contracts/src/msgs/IUpdateClientMsgs.sol b/contracts/src/msgs/IUpdateClientMsgs.sol index ef09537..fe12023 100644 --- a/contracts/src/msgs/IUpdateClientMsgs.sol +++ b/contracts/src/msgs/IUpdateClientMsgs.sol @@ -14,6 +14,7 @@ interface IUpdateClientMsgs is IICS07TendermintMsgs { } /// @notice The public value output for the sp1 update client program. + /// @param clientState The client state that was used to verify the header. /// @param trustedConsensusState The trusted consensus state. /// @param newConsensusState The new consensus state with the verified header. /// @param time The time which the header was verified in seconds.