Skip to content

Commit

Permalink
Update ERC-7578: Minor implementation update
Browse files Browse the repository at this point in the history
Merged by EIP-Bot.
  • Loading branch information
V1d0r authored May 20, 2024
1 parent 086af79 commit c9e5d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ERCS/erc-7578.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ contract ERC7578 is IERC7578, ERC721 {
* to check if they are set before minting
* @param tokenId The ID of the token being minted or burned
*/
function _update(address to, uint256 tokenId, address auth) internal override returns (address) {
function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
address from = _ownerOf(tokenId);
if (to == address(0)) {
_removeProperties(tokenId);
Expand Down

0 comments on commit c9e5d73

Please sign in to comment.