Skip to content

Commit 41d5e30

Browse files
author
Rahul Maganti
committed
evm: modify natspec indentation for INttManager.sol
1 parent 8a99da2 commit 41d5e30

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

evm/src/interfaces/INttManager.sol

+14-14
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ interface INttManager is INttManagerState {
4040
error DeliveryPaymentTooLow(uint256 requiredPayment, uint256 providedPayment);
4141

4242
//// @notice The transfer has some dust.
43-
//// @dev This is a security measure to prevent users from losing funds.
44-
//// This is the result of trimming the amount and then untrimming it.
43+
//// @dev This is a security measure to prevent users from losing funds.
44+
//// This is the result of trimming the amount and then untrimming it.
4545
//// @param amount The amount to transfer.
4646
error TransferAmountHasDust(uint256 amount, uint256 dust);
4747

@@ -87,9 +87,9 @@ interface INttManager is INttManagerState {
8787
error BurnAmountDifferentThanBalanceDiff(uint256 burnAmount, uint256 balanceDiff);
8888

8989
/// @notice Transfer a given amount to a recipient on a given chain. This function is called
90-
/// by the user to send the token cross-chain. This function will either lock or burn the
91-
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
92-
/// to send a message with the incrementing sequence number and the token transfer payload.
90+
/// by the user to send the token cross-chain. This function will either lock or burn the
91+
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
92+
/// to send a message with the incrementing sequence number and the token transfer payload.
9393
/// @param amount The amount to transfer.
9494
/// @param recipientChain The chain ID for the destination.
9595
/// @param recipient The recipient address.
@@ -100,9 +100,9 @@ interface INttManager is INttManagerState {
100100
) external payable returns (uint64 msgId);
101101

102102
/// @notice Transfer a given amount to a recipient on a given chain. This function is called
103-
/// by the user to send the token cross-chain. This function will either lock or burn the
104-
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
105-
/// to send a message with the incrementing sequence number and the token transfer payload.
103+
/// by the user to send the token cross-chain. This function will either lock or burn the
104+
/// sender's tokens. Finally, this function will call into registered `Endpoint` contracts
105+
/// to send a message with the incrementing sequence number and the token transfer payload.
106106
/// @dev Transfers are queued if the outbound limit is hit and must be completed by the client.
107107
/// @param amount The amount to transfer.
108108
/// @param recipientChain The chain ID for the destination.
@@ -141,8 +141,8 @@ interface INttManager is INttManagerState {
141141

142142
/// @notice Called by an Endpoint contract to deliver a verified attestation.
143143
/// @dev This function enforces attestation threshold and replay logic for messages. Once all
144-
/// validations are complete, this function calls `executeMsg` to execute the command specified
145-
/// by the message.
144+
/// validations are complete, this function calls `executeMsg` to execute the command specified
145+
/// by the message.
146146
/// @param sourceChainId The chain id of the sender.
147147
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
148148
/// @param payload The VAA payload.
@@ -152,11 +152,11 @@ interface INttManager is INttManagerState {
152152
TransceiverStructs.NttManagerMessage memory payload
153153
) external;
154154

155-
/// @notice Called after a message has been sufficiently verified to execute the command in the message.
156-
/// This function will decode the payload as an NttManagerMessage to extract the sequence, msgType,
157-
/// and other parameters.
155+
/// @notice Called after a message has been sufficiently verified to execute
156+
/// the command in the message. This function will decode the payload
157+
/// as an NttManagerMessage to extract the sequence, msgType, and other parameters.
158158
/// @dev This function is exposed as a fallback for when an `Transceiver` is deregistered
159-
/// when a message is in flight.
159+
/// when a message is in flight.
160160
/// @param sourceChainId The chain id of the sender.
161161
/// @param sourceNttManagerAddress The address of the sender's nttManager contract.
162162
/// @param message The message to execute.

0 commit comments

Comments
 (0)