Change dependency source to work around Truffle limitation (#3218)

(cherry picked from commit abdb20a6bd)
This commit is contained in:
JulissaDantes
2022-02-25 10:49:58 -04:00
committed by Francisco Giordano
parent 771f07aa5f
commit 5c4b75a9cd
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
pragma solidity ^0.8.0;
import "./IERC165.sol";
import "../utils/introspection/IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard.

View File

@ -3,7 +3,8 @@
pragma solidity ^0.8.0;
import "../../../interfaces/IERC3156.sol";
import "../../../interfaces/IERC3156FlashBorrower.sol";
import "../../../interfaces/IERC3156FlashLender.sol";
import "../ERC20.sol";
/**