feat: Balances mapping made internal to be able to access it by overrided _mint

This commit is contained in:
donosonaumczuk
2022-11-08 18:20:55 +00:00
parent ab83ba6096
commit f13aedc0bf

View File

@@ -38,7 +38,7 @@ abstract contract ERC721Time is Context, ERC165, IERC721Time, IERC721Metadata {
mapping(uint256 => IERC721Time.TokenData) internal _tokenData;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
mapping(address => uint256) internal _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) internal _tokenApprovals;