Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Oct 2, 2024
1 parent a63d73e commit 4865831
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/test/executable/GMPExecutableWithTokenTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity ^0.8.0;

import { AxelarGMPExecutableWithToken } from '../../executable/AxelarGMPExecutableWithToken.sol';
import { IInterchainTransferReceived } from '../../interfaces/IAxelarGMPTransfer.sol';
import { IInterchainTransferReceived } from '../../interfaces/IInterchainTransfer.sol';

contract GMPExecutableWithTokenTest is AxelarGMPExecutableWithToken, IInterchainTransferReceived {
event Received(uint256 num);
Expand All @@ -22,10 +22,10 @@ contract GMPExecutableWithTokenTest is AxelarGMPExecutableWithToken, IInterchain
}

function _executeWithToken(
bytes32 /*commandId*/,
bytes32 /* commandId */,
string calldata sourceChain,
string calldata sourceAddress,
bytes calldata payload,
bytes calldata /* payload */,
string calldata tokenSymbol,
uint256 amount
) internal override {
Expand All @@ -34,7 +34,7 @@ contract GMPExecutableWithTokenTest is AxelarGMPExecutableWithToken, IInterchain
sourceChain,
sourceAddress,
bytes(sourceAddress),
abi.encodePacked(address(this)),
address(this),
gatewayWithToken().tokenAddresses(tokenSymbol),
amount
);
Expand Down

0 comments on commit 4865831

Please sign in to comment.