From 6e18d514f45da7165cca78b84f544ecf852d8bfa Mon Sep 17 00:00:00 2001 From: Ermyas Abebe Date: Thu, 1 Feb 2024 14:25:21 +1100 Subject: [PATCH] Remove unused imports --- test/fork/root/RootERC20BridgeFlowRate.t.sol | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/fork/root/RootERC20BridgeFlowRate.t.sol b/test/fork/root/RootERC20BridgeFlowRate.t.sol index 6c11d7ca..f6280334 100644 --- a/test/fork/root/RootERC20BridgeFlowRate.t.sol +++ b/test/fork/root/RootERC20BridgeFlowRate.t.sol @@ -1,11 +1,10 @@ // SPDX-License-Identifier: Apache 2.0 pragma solidity 0.8.19; -import {Test, console2} from "forge-std/Test.sol"; +import {Test} from "forge-std/Test.sol"; import {RootERC20BridgeFlowRate} from "../../../src/root/flowrate/RootERC20BridgeFlowRate.sol"; import {IFlowRateWithdrawalQueueErrors} from "../../../src/root/flowrate/FlowRateWithdrawalQueue.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; -import {console} from "forge-std/Console.sol"; import {Utils} from "../../utils.t.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; @@ -145,9 +144,6 @@ contract RootERC20BridgeFlowRateForkTest is Test, Utils { _sendWithdrawalMessage(bridge, token, withdrawer, amount); _verifyWithdrawalWasQueued(bridge, token, withdrawer, amount); - console.log("Bridge balance: ", address(bridge).balance); - console.log("Test contract balance: ", address(this).balance); - // check that early withdrawal attempt fails vm.expectRevert(); bridge.finaliseQueuedWithdrawal(withdrawer, 0);