Skip to content

Commit

Permalink
fixed natspec and renamed _error to failure
Browse files Browse the repository at this point in the history
  • Loading branch information
voith committed Feb 24, 2025
1 parent bcb75e9 commit df9e14f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/ccip/interfaces/IGovernanceCCIPReceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ interface IGovernanceCCIPReceiver {
bytes payload
);

/// @notice Emitted when a message is successfully executed.
/// @notice Emitted when a message fails to execute.
/// @param messageId The ccip message id.
/// @param target The target address on the destination chain.
/// @param payload The payload of the message.
/// @param _error The error returned by the message call.
/// @param failure The error returned by the message call.
event MessageExecutionFailed(
bytes32 indexed messageId,
address indexed target,
bytes payload,
bytes _error
bytes failure
);

/// @dev Error thrown when a provided address is the zero address.
Expand Down

0 comments on commit df9e14f

Please sign in to comment.