Skip to content

Commit

Permalink
feat(contracts): migrate to new openzeppelin contracts version
Browse files Browse the repository at this point in the history
  • Loading branch information
owieth committed Aug 18, 2023
1 parent d6eb97c commit a752f2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/NFTIME.sol
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ contract NFTIME is Ownable, AccessControl, ERC721URIStorage, ERC721Enumerable, E
public
view
virtual
override(AccessControl, ERC721, ERC721Enumerable)
override(AccessControl, ERC721, ERC721Enumerable, ERC721URIStorage)
returns (bool)
{
return super.supportsInterface(interfaceId);
Expand Down
2 changes: 1 addition & 1 deletion src/V1/NFTIMEV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ contract NFTIME is Ownable, AccessControl, ERC721URIStorage, ERC721Enumerable, E
public
view
virtual
override(AccessControl, ERC721, ERC721Enumerable)
override(AccessControl, ERC721, ERC721Enumerable, ERC721URIStorage)
returns (bool)
{
return super.supportsInterface(interfaceId);
Expand Down
2 changes: 1 addition & 1 deletion src/V2/NFTIMEV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ contract NFTIME is Ownable, AccessControl, ERC721URIStorage, ERC721Enumerable, E
public
view
virtual
override(AccessControl, ERC721, ERC721Enumerable)
override(AccessControl, ERC721, ERC721Enumerable, ERC721URIStorage)
returns (bool)
{
return super.supportsInterface(interfaceId);
Expand Down

0 comments on commit a752f2c

Please sign in to comment.