Normalize return variable names in IERC721Enumerable (#3079)

* Name missing return variable in IERC721Enumerable

For consistency among all functions.

* remove return variable names
pull/3094/head
Martín Triay 3 years ago committed by GitHub
parent a65c03bc0d
commit 828fe365ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      contracts/token/ERC721/extensions/IERC721Enumerable.sol

@ -19,7 +19,7 @@ interface IERC721Enumerable is IERC721 {
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.

Loading…
Cancel
Save