token_ERC721_ERC721.sol.patch 411 B

1234567891011121314
  1. --- token/ERC721/ERC721.sol 2023-08-11 20:33:54
  2. +++ token/ERC721/ERC721.sol 2023-08-13 09:56:16
  3. @@ -214,6 +214,11 @@
  4. }
  5. }
  6. + // FV
  7. + function _getApproved(uint256 tokenId) internal view returns (address) {
  8. + return _tokenApprovals[tokenId];
  9. + }
  10. +
  11. /**
  12. * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
  13. *