Fixed variable shadowing. (#1310)
This commit is contained in:
committed by
Francisco Giordano
parent
92133be7ea
commit
2ce1fde405
@ -8,7 +8,7 @@ import "./IERC721.sol";
|
||||
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
||||
*/
|
||||
contract IERC721Metadata is IERC721 {
|
||||
function name() external view returns (string name);
|
||||
function symbol() external view returns (string symbol);
|
||||
function name() external view returns (string);
|
||||
function symbol() external view returns (string);
|
||||
function tokenURI(uint256 tokenId) public view returns (string);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user