Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanProgrammer committed Jan 5, 2024
1 parent 3be7247 commit 7e91ee1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions contracts/mock/GatewayRouterMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ contract GatewayRouterMock {

return abi.encode(_token, _to, _amount, _maxGas, _gasPriceBid, _data);
}

function getGateway(address) external view returns (address) {
return address(this);
}
}
2 changes: 1 addition & 1 deletion test/fork/L1Sender.fork.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('L1Sender Fork', () => {
let OWNER: SignerWithAddress;
let SECOND: SignerWithAddress;

const arbitrumBridgeGatewayRouterAddress = '0x0F25c1DC2a9922304f2eac71DCa9B07E310e8E5a';
const arbitrumBridgeGatewayRouterAddress = '0x72Ce9c846789fdB6fC1f34aC4AD25Dd9ef7031ef';
const lzEndpointAddress = '0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675';
const stethAddress = '0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84';
const wstethAddress = '0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0';
Expand Down

0 comments on commit 7e91ee1

Please sign in to comment.