Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth committed Oct 15, 2024
1 parent aaaa880 commit 199fc7b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions contracts/test/executable/AxelarExecutableWithTokenTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ contract AxelarExecutableWithTokenTest is AxelarExecutableWithToken, IInterchain
constructor(address gatewayAddress) AxelarExecutableWithToken(gatewayAddress) {}

function _execute(
bytes32 /*commandId*/,
string calldata /*sourceChain*/,
string calldata /*sourceAddress*/,
bytes32, /*commandId*/
string calldata, /*sourceChain*/
string calldata, /*sourceAddress*/
bytes calldata payload
) internal override {
uint256 num = abi.decode(payload, (uint256));
emit Received(num);
}

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 Down
2 changes: 1 addition & 1 deletion test/executable/AxelarExecutableWithToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ describe('AxelarExecutableWithToken', () => {
sourceChain,
userWalletAddress,
toUtf8Bytes(userWalletAddress),
GMPExecutableWithToken.address,
AxelarExecutableWithToken.address,
await destinationChainGateway.tokenAddresses(symbolA),
swapAmount,
);
Expand Down

0 comments on commit 199fc7b

Please sign in to comment.