Commit 1cf96ef0 by Paweł Winnicki Committed by Leo Arias

Make state variables private (#1426)

* added function to renounce ownership

* Make state variables private (#1411)

(cherry picked from commit 03765e08)
parent 5d596fc7
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment