Skip to content

Commit

Permalink
fix interface (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 authored Oct 31, 2023
1 parent bc303bb commit 6a066ab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/interfaces/IORMP.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ interface IORMP {

/// @notice Get a quote in source native gas, for the amount that send() requires to pay for message delivery.
/// @param toChainId The Message destination chain id.
// @param to User application contract address which receive the message.
// @param ua User application contract address which send the message.
/// @param gasLimit Gas limit for UA used.
/// @param encoded The calldata which encoded by ABI Encoding.
/// @param params General extensibility for relayer to custom functionality.
function fee(uint256 toChainId, address to, bytes calldata encoded, bytes calldata params)
function fee(uint256 toChainId, address ua, uint256 gasLimit, bytes calldata encoded, bytes calldata params)
external
view
returns (uint256);
Expand Down

0 comments on commit 6a066ab

Please sign in to comment.