Skip to content

Commit

Permalink
Change dependency source to work around Truffle limitation (#3218)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulissaDantes committed Feb 25, 2022
1 parent 3e74681 commit abdb20a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/interfaces/IERC2981.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pragma solidity ^0.8.0;

import "./IERC165.sol";
import "../utils/introspection/IERC165.sol";

/**
* @dev Interface for the NFT Royalty Standard.
Expand Down
3 changes: 2 additions & 1 deletion contracts/token/ERC20/extensions/ERC20FlashMint.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

pragma solidity ^0.8.0;

import "../../../interfaces/IERC3156.sol";
import "../../../interfaces/IERC3156FlashBorrower.sol";
import "../../../interfaces/IERC3156FlashLender.sol";
import "../ERC20.sol";

/**
Expand Down

0 comments on commit abdb20a

Please sign in to comment.