Skip to content

Commit

Permalink
Merge pull request #168 from gildlab/2024-11-04-fix-imports
Browse files Browse the repository at this point in the history
relative imports
  • Loading branch information
thedavidmeister authored Nov 4, 2024
2 parents cf07892 + 9964253 commit 33d0f0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/concrete/oracle/SceptreStakedFlrOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: Copyright (c) 2020 thedavidmeister
pragma solidity =0.8.25;

import {PriceOracleV2} from "src/abstract/PriceOracleV2.sol";
import {PriceOracleV2} from "../../abstract/PriceOracleV2.sol";
import {LibSceptreStakedFlare} from "rain.flare/lib/sflr/LibSceptreStakedFlare.sol";

contract SceptreStakedFlrOracle is PriceOracleV2 {
Expand Down
2 changes: 1 addition & 1 deletion src/concrete/oracle/TwoPriceOracleV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
LibFixedPointDecimalArithmeticOpenZeppelin,
Math
} from "rain.math.fixedpoint/lib/LibFixedPointDecimalArithmeticOpenZeppelin.sol";
import {PriceOracleV2, IPriceOracleV2} from "src/abstract/PriceOracleV2.sol";
import {PriceOracleV2, IPriceOracleV2} from "../../abstract/PriceOracleV2.sol";

/// Construction config for `TwoPriceOracle`.
/// @param base The base price of the merged pair, will be the numerator.
Expand Down

0 comments on commit 33d0f0d

Please sign in to comment.