Skip to content

Commit

Permalink
fix: add comment, remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul1010 committed Dec 18, 2023
1 parent 91cbd99 commit bc9ee3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/LightRelay.t.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.17;

import {Test, console2} from "forge-std/Test.sol";
import {Test} from "forge-std/Test.sol";

import {LightRelay} from "../src/relay/LightRelay.sol";
import {ILightRelay} from "../src/relay/LightRelay.sol";
import {BitcoinTx} from "../src/bridge/BitcoinTx.sol";
import {BridgeState} from "../src/bridge/BridgeState.sol";
import "forge-std/console.sol";

// Light relay test cases imported from: https://github.com/keep-network/tbtc-v2/blob/cadead9ecd6005325ace4d64288c20733b058352/solidity/test/relay/LightRelay.test.ts

contract LightRelayTest is Test {
using BitcoinTx for BridgeState.Storage;
Expand Down

0 comments on commit bc9ee3c

Please sign in to comment.