Skip to content

Commit

Permalink
Merge pull request #267 from morpho-labs/refactor/imports
Browse files Browse the repository at this point in the history
refactor(imports): don't use absolute imports
  • Loading branch information
MerlinEgalite authored Aug 11, 2023
2 parents 897f00e + 093ab3a commit e52eaef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libraries/EventsLib.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import {Id, Market} from "src/interfaces/IBlue.sol";
import {Id, Market} from "../interfaces/IBlue.sol";

library EventsLib {
event SupplyCollateral(Id indexed id, address indexed caller, address indexed onBehalf, uint256 amount);
Expand Down
2 changes: 1 addition & 1 deletion src/mocks/OracleMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.8.0;

import {IOracle} from "../interfaces/IOracle.sol";

import {FixedPointMathLib, WAD} from "src/libraries/FixedPointMathLib.sol";
import {FixedPointMathLib, WAD} from "../libraries/FixedPointMathLib.sol";

contract OracleMock is IOracle {
uint256 internal _price;
Expand Down

0 comments on commit e52eaef

Please sign in to comment.