chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {Test, console} from "forge-std/Test.sol";
import {Test} from "forge-std/Test.sol";
import {CCIPWETH9Bridge} from "../contracts/ccip/CCIPWETH9Bridge.sol";
import {WETH} from "../contracts/tokens/WETH.sol";
import {IRouterClient} from "../contracts/ccip/IRouterClient.sol";
@@ -163,7 +163,7 @@ contract CCIPWETH9BridgeTest is Test {
// Deposit WETH9 to bridge for testing (simulating CCIP token transfer)
vm.deal(address(this), amount);
weth9.deposit{value: amount}();
weth9.transfer(address(bridge), amount);
require(weth9.transfer(address(bridge), amount), "WETH transfer failed");
// Prepare message
bytes32 messageId = keccak256("test-message");