Update eip-721 natspec

This commit is contained in:
C. Brown 2018-03-19 19:19:08 -05:00 committed by GitHub
parent c70df15b6c
commit 47e16b4baf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,9 +73,9 @@ interface ERC721 /* is ERC165 */ {
function balanceOf(address _owner) external view returns (uint256);
/// @notice Find the owner of an NFT
/// @param _tokenId The identifier for an NFT
/// @dev NFTs assigned to zero address are considered invalid, and queries
/// about them do throw.
/// @param _tokenId The identifier for an NFT
/// @return The address of the owner of the NFT
function ownerOf(uint256 _tokenId) external view returns (address);