Skip to content

Commit

Permalink
Change absolute to relative paths within contracts/src/ (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
jalextowle authored Jun 20, 2023
1 parent 5bce7a9 commit 2c57aa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/src/interfaces/IWETH.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.19;

import { IERC20 } from "contracts/src/interfaces/IERC20.sol";
import { IERC20 } from "./IERC20.sol";

interface IWETH is IERC20 {
function deposit() external payable;
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/token/BondWrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity 0.8.19;

import { ERC20 } from "solmate/tokens/ERC20.sol";
import { IERC20 } from "contracts/src/interfaces/IERC20.sol";
import { IERC20 } from "../interfaces/IERC20.sol";
import { IHyperdrive } from "../interfaces/IHyperdrive.sol";
import { AssetId } from "../libraries/AssetId.sol";
import { Errors } from "../libraries/Errors.sol";
Expand Down

0 comments on commit 2c57aa3

Please sign in to comment.