Skip to content

Commit 10f84b7

Browse files
author
Rahul Maganti
committed
evm: fix errors
1 parent f771de6 commit 10f84b7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

evm/src/interfaces/INttManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ interface INttManager is INttManagerState {
5858
/// To ensure the client does not continue to initiate calls to the ateestationReceived function.
5959
/// @dev Selector 0x2113894.
6060
/// @param nttManagerMessageHash The hash of the message.
61-
error TrasceiverAlreadyAttestedToMessage(bytes32 nttManagerMessageHash);
61+
error TransceiverAlreadyAttestedToMessage(bytes32 nttManagerMessageHash);
6262

6363
/// @notice Error when the message is not approved.
6464
/// @dev Selector 0x451c4fb0.
@@ -79,7 +79,7 @@ interface INttManager is INttManagerState {
7979
/// @dev Selector 0x9c8d2cd2.
8080
error InvalidRecipient();
8181

82-
/// @@notice Error when the amount burned is different than the balance difference,
82+
/// @notice Error when the amount burned is different than the balance difference,
8383
/// since NTT does not support burn fees.
8484
/// @dev Selector 0x02156a8f.
8585
/// @param burnAmount The amount burned.

evm/src/interfaces/ITransceiver.sol

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ interface ITransceiver {
2020
/// the owner of the NttManager.
2121
/// @dev Selector: 0x66791dd6.
2222
/// @param currentOwner he current owner of the transceiver.
23-
/// @param newOwner The new owner of the transceiver.
2423
error CannotRenounceTransceiverOwnership(address currentOwner);
2524

2625
/// @notice Error when trying to transfer transceiver ownership.

evm/src/interfaces/IWormholeTransceiverState.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface IWormholeTransceiverState {
2222
/// @dev Topic0
2323
/// 0x528b18a533e892b5401d1fb63597275df9d2bb45b13e7695c3147cd07b9746c3.
2424
/// @param chainId The chain ID to set.
25-
/// @param isEvm A boolean indicating whether relaying is enabled.
25+
/// @param isRelayingEnabled A boolean indicating whether relaying is enabled.
2626
event SetIsWormholeRelayingEnabled(uint16 chainId, bool isRelayingEnabled);
2727

2828
/// @notice Emitted when special relaying is enabled for the given chain.

0 commit comments

Comments
 (0)