Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/interfaces/ILayerZero.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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,
Expand Down
Loading