Skip to content

Commit

Permalink
chore: Move Uni V3 price converter contract to test/Utils
Browse files Browse the repository at this point in the history
  • Loading branch information
bingen committed Aug 26, 2024
1 parent f15f232 commit 1cc2208
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pragma solidity 0.8.18;

import "openzeppelin-contracts/contracts/utils/math/Math.sol";

import {Logging} from "../../../../test/Utils/Logging.sol";
import {StringFormatting} from "../../../../test/Utils/StringFormatting.sol";
import {DECIMAL_PRECISION} from "../../../../Dependencies/Constants.sol";
import {Logging} from "./Logging.sol";
import {StringFormatting} from "./StringFormatting.sol";
import {DECIMAL_PRECISION} from "../../Dependencies/Constants.sol";

import "forge-std/console2.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/test/zapperLeverage.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import "../Zappers/Modules/Exchanges/CurveExchange.sol";
import "../Zappers/Modules/Exchanges/UniswapV3/ISwapRouter.sol";
import "../Zappers/Modules/Exchanges/UniswapV3/IQuoterV2.sol";
import "../Zappers/Modules/Exchanges/UniswapV3/IUniswapV3Pool.sol";
import "../Zappers/Modules/Exchanges/UniswapV3/UniPriceConverter.sol";
import "./TestContracts/Interfaces/INonfungiblePositionManager.sol";
import "../Zappers/Modules/Exchanges/UniV3Exchange.sol";
import "./Utils/UniPriceConverter.sol";

contract ZapperLeverageLSTMainnet is DevTestSetup {
using StringFormatting for uint256;
Expand Down

0 comments on commit 1cc2208

Please sign in to comment.