15 lines
364 B
Diff
15 lines
364 B
Diff
--- token/ERC721/ERC721.sol 2023-08-10 16:45:36
|
|
+++ token/ERC721/ERC721.sol 2023-08-10 22:11:07
|
|
@@ -208,6 +208,11 @@
|
|
return _owners[tokenId];
|
|
}
|
|
|
|
+ // FV
|
|
+ function _getApproved(uint256 tokenId) internal view returns (address) {
|
|
+ return _tokenApprovals[tokenId];
|
|
+ }
|
|
+
|
|
/**
|
|
* @dev Returns whether `tokenId` exists.
|
|
*
|