Make state variables private (#1426)
* added function to renounce ownership * Make state variables private (#1411)
This commit is contained in:
committed by
Nicolás Venturo
parent
9be0f100c4
commit
03765e08b9
@ -6,10 +6,10 @@ import "../../introspection/ERC165.sol";
|
||||
|
||||
contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
|
||||
// Token name
|
||||
string internal _name;
|
||||
string private _name;
|
||||
|
||||
// Token symbol
|
||||
string internal _symbol;
|
||||
string private _symbol;
|
||||
|
||||
// Optional mapping for token URIs
|
||||
mapping(uint256 => string) private _tokenURIs;
|
||||
|
||||
Reference in New Issue
Block a user