Skip to content

Commit

Permalink
setting peers
Browse files Browse the repository at this point in the history
  • Loading branch information
dan13ram committed Sep 4, 2024
1 parent c3e9186 commit 9883833
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/CrossChainBaseTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ contract CrossChainBaseTest is TestHelper {
vm.selectFork(mainnetFork);
mainnetDeployer = new ImmutableMultiChainDeployer{salt: "SALT"}();
mainnetERC20 = new ERC20Mock("Test Token", "TEST");
mainnetOFTAdapterImpl = address(new L1YnOFTAdapterUpgradeable(address(mainnetERC20), address(mainnetLzEndpoint)));
mainnetOFTAdapterImpl =
address(new L1YnOFTAdapterUpgradeable(address(mainnetERC20), address(mainnetLzEndpoint)));
mainnetOFTAdapter = L1YnOFTAdapterUpgradeable(
address(new TransparentUpgradeableProxy(mainnetOFTAdapterImpl, _controller, ""))
);
mainnetOFTAdapter.initialize(_owner, _rateLimitConfigs);
mainnetEid = mainnetLzEndpoint.eid();

}

{
Expand Down
2 changes: 0 additions & 2 deletions test/L1YnOFTAdapterUpgradeable.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import {OApp} from "@layerzerolabs/lz-evm-oapp-v2/contracts/oapp/OApp.sol";
import {IOFT, SendParam, OFTReceipt} from "@layerzerolabs/lz-evm-oapp-v2/contracts/oft/interfaces/IOFT.sol";

contract Test_L1YnOFTAdapterUpgradeable is CrossChainBaseTest {


address public userA = address(0x1);
address public userB = address(0x2);
address public userC = address(0x3);
Expand Down

0 comments on commit 9883833

Please sign in to comment.