From 66fc54899ec0fd550e9fb16820a7793926a3706d Mon Sep 17 00:00:00 2001 From: Tabish Shaikh Date: Fri, 13 Jun 2025 18:35:43 +0530 Subject: [PATCH] fix: interface --- src/interfaces/ILayerZero.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/interfaces/ILayerZero.sol b/src/interfaces/ILayerZero.sol index 630bf554..bf089769 100644 --- a/src/interfaces/ILayerZero.sol +++ b/src/interfaces/ILayerZero.sol @@ -2,8 +2,8 @@ pragma solidity >=0.8.0; struct MessagingFee { - uint nativeFee; // gas amount in native gas token - uint lzTokenFee; // gas amount in ZRO token + uint256 nativeFee; // gas amount in native gas token + uint256 lzTokenFee; // gas amount in ZRO token } struct MessagingReceipt { @@ -58,7 +58,7 @@ interface ILayerZero { function quoteSend( SendParam calldata _sendParam, bool _payInLzToken - ) external returns (MessagingFee memory msgFee); + ) external view returns (MessagingFee memory msgFee); function send( SendParam calldata _sendParam,