Skip to content

Commit

Permalink
remove ERC4906 in supportsInterface() in CrowdfundNFT
Browse files Browse the repository at this point in the history
  • Loading branch information
0xble committed Dec 15, 2023
1 parent 4249514 commit 0b84228
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions contracts/crowdfund/CrowdfundNFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ abstract contract CrowdfundNFT is IERC721, IERC4906, EIP165, ReadOnlyDelegateCal
return
super.supportsInterface(interfaceId) ||
// ERC721 interface ID
interfaceId == 0x80ac58cd ||
// ERC4906 interface ID
interfaceId == 0x49064906;
interfaceId == 0x80ac58cd;
}

/// @notice Returns a URI to render the NFT.
Expand Down

0 comments on commit 0b84228

Please sign in to comment.