Skip to content

Commit 648cf3a

Browse files
committed
fix natspec comments
1 parent 47ef4ac commit 648cf3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

solidity/src/BasicSwap7683.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ abstract contract BasicSwap7683 is Base7683 {
134134
/**
135135
* @dev Handles settling an individual order, should be called by the inheriting contract when receiving a setting
136136
* instruction from a remote chain.
137-
* @param _messageOrigin The domain from which the message originates (unused in this implementation).
138-
* @param _messageSender The address of the sender on the origin domain (unused in this implementation).
137+
* @param _messageOrigin The domain from which the message originates.
138+
* @param _messageSender The address of the sender on the origin domain.
139139
* @param _orderId The ID of the order to settle.
140140
* @param _receiver The receiver address (encoded as bytes32).
141141
*/
@@ -165,8 +165,8 @@ abstract contract BasicSwap7683 is Base7683 {
165165
/**
166166
* @dev Handles refunding an individual order, should be called by the inheriting contract when receiving a
167167
* refunding instruction from a remote chain.
168-
* @param _messageOrigin The domain from which the message originates (unused in this implementation).
169-
* @param _messageSender The address of the sender on the origin domain (unused in this implementation).
168+
* @param _messageOrigin The domain from which the message originates.
169+
* @param _messageSender The address of the sender on the origin domain.
170170
* @param _orderId The ID of the order to refund.
171171
*/
172172
function _handleRefundOrder(uint32 _messageOrigin, bytes32 _messageSender, bytes32 _orderId) internal virtual {

0 commit comments

Comments
 (0)