Skip to content

Commit c80eb67

Browse files
committed
feat: correctly set interface
1 parent 4394417 commit c80eb67

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/interfaces/IIncentivizedMessageEscrow.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ interface IIncentivizedMessageEscrow is IMessageEscrowStructs, IMessageEscrowErr
2929
function processPacket(bytes calldata messagingProtocolContext, bytes calldata message, bytes32 feeRecipient) payable external;
3030

3131
function setRemoteImplementation(bytes32 chainIdentifier, bytes calldata implementation) external;
32-
32+
3333
/**
3434
* @notice Estimates the additional cost to the messaging router to validate the message
35-
* @param destinationChainIdentifier Destination chain. Some messaging protocols have chain based costs.
3635
* @return asset The asset the token is in. If native token, returns address(0);
3736
* @return amount The number of assets to pay.
3837
*/
39-
function estimateAdditionalCost(bytes32 destinationChainIdentifier) external view returns(address asset, uint256 amount);
38+
function estimateAdditionalCost() external view returns(address asset, uint256 amount);
4039

4140
function timeoutMessage(
4241
bytes32 sourceIdentifier,

0 commit comments

Comments
 (0)