Skip to content

Commit abdb20a

Browse files
Change dependency source to work around Truffle limitation (OpenZeppelin#3218)
1 parent 3e74681 commit abdb20a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

contracts/interfaces/IERC2981.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pragma solidity ^0.8.0;
55

6-
import "./IERC165.sol";
6+
import "../utils/introspection/IERC165.sol";
77

88
/**
99
* @dev Interface for the NFT Royalty Standard.

contracts/token/ERC20/extensions/ERC20FlashMint.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
pragma solidity ^0.8.0;
55

6-
import "../../../interfaces/IERC3156.sol";
6+
import "../../../interfaces/IERC3156FlashBorrower.sol";
7+
import "../../../interfaces/IERC3156FlashLender.sol";
78
import "../ERC20.sol";
89

910
/**

0 commit comments

Comments
 (0)