Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ermyas committed Feb 1, 2024
1 parent b3d0ff0 commit 6e18d51
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/fork/root/RootERC20BridgeFlowRate.t.sol
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 6e18d51

Please sign in to comment.