chore: sync submodule state (parent ref update)
Made-with: Cursor
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user