Skip to content

Commit

Permalink
reordered parameters in function
Browse files Browse the repository at this point in the history
  • Loading branch information
GWSzeto committed Sep 18, 2024
1 parent 09603f1 commit 1be94a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/module/token/crosschain/chainlink.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ contract ChainlinkCrossChain is Module {

function sendCrossChainTransaction(
uint64 _destinationChain,
address _callAddress,
address _recipient,
bytes calldata _data,
address _token,
uint256 _amount,
address _callAddress,
bytes memory _extraArgs
bytes calldata _data,
bytes calldata _extraArgs
) external {
(address _feeTokenAddress, bytes memory ccipMessageExtraArgs) = abi.decode(_extraArgs, (address, bytes));

Expand Down

0 comments on commit 1be94a4

Please sign in to comment.