Skip to content

Commit

Permalink
fix: replace imports
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeNervoXS committed Apr 17, 2024
1 parent 59e1649 commit 19544b6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import { IERC4626 } from "borrow-contracts/interfaces/external/IERC4626.sol";
import { IERC4626 } from "../IERC4626.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

/// @title IOracle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity >=0.5.0;

import { IMorphoChainlinkOracleV2 } from "./IMorphoChainlinkOracleV2.sol";
import { IERC4626 } from "borrow-contracts/interfaces/external/IERC4626.sol";
import { IERC4626 } from "../IERC4626.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

/// @title IMorphoChainlinkOracleV2Factory
Expand Down
2 changes: 1 addition & 1 deletion contracts/oracle/BaseFeedPTPendle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pragma solidity ^0.8.12;

import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

import "borrow-contracts/utils/AccessControlManager.sol";
import "../utils/AccessControlManager.sol";
import "./BaseOraclePTPendle.sol";

/// @title BaseFeedPtPendle
Expand Down
2 changes: 1 addition & 1 deletion contracts/oracle/BaseOraclePTPendle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.8.12;
import { UNIT, UD60x18, ud } from "prb/math/UD60x18.sol";
import "pendle/interfaces/IPMarket.sol";
import { PendlePtOracleLib } from "pendle/oracles/PendlePtOracleLib.sol";
import "borrow-contracts/utils/Errors.sol";
import "../utils/Errors.sol";

/// @title BaseOraclePTPendle
/// @author Angle Labs, Inc.
Expand Down
2 changes: 1 addition & 1 deletion contracts/oracle/morpho/mainnet/MorphoFeedPTweETH.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.12;

import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";

import "borrow-contracts/oracle/BaseFeedPTPendle.sol";
import "../../BaseFeedPTPendle.sol";

/// @title MorphoFeedPTweETH
/// @author Angle Labs, Inc.
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/AccessControlManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pragma solidity ^0.8.19;

import { IAccessControlManager } from "borrow-contracts/interfaces/IAccessControlManager.sol";
import { IAccessControlManager } from "../interfaces/IAccessControlManager.sol";

import "./Errors.sol";

Expand Down

0 comments on commit 19544b6

Please sign in to comment.