Skip to content

Commit

Permalink
Remove unused IERC721Enumerable import (#178)
Browse files Browse the repository at this point in the history
* Remove unused import IERC721Enumerable

Remove unused openzeppelin import `import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';`

No longer required after commit cbcd99b

* Fix comment

fixed comment refernce
  • Loading branch information
broliver12 authored Mar 15, 2022
1 parent e2bc399 commit f201ccd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/ERC721A.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
Expand Down Expand Up @@ -103,7 +102,6 @@ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
}

/**
* @dev See {IERC721Enumerable-totalSupply}.
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
Expand Down

0 comments on commit f201ccd

Please sign in to comment.