Fix signature, thanks @Beskhue

This commit is contained in:
William Entriken 2018-01-28 14:06:57 -05:00
parent 6754461619
commit 1ca7dfb9eb
1 changed files with 2 additions and 2 deletions

View File

@ -49,11 +49,11 @@ interface ERC721 {
// bytes4(keccak256('supportsInterface(bytes4)')); // bytes4(keccak256('supportsInterface(bytes4)'));
/// @dev ERC-165 (draft) interface signature for ERC721 /// @dev ERC-165 (draft) interface signature for ERC721
// bytes4 internal constant INTERFACE_SIGNATURE_ERC721 = // 0xe55729f5 // bytes4 internal constant INTERFACE_SIGNATURE_ERC721 = // 0xda671b9b
// bytes4(keccak256('ownerOf(uint256)')) ^ // bytes4(keccak256('ownerOf(uint256)')) ^
// bytes4(keccak256('countOfDeeds()')) ^ // bytes4(keccak256('countOfDeeds()')) ^
// bytes4(keccak256('countOfDeedsByOwner(address)')) ^ // bytes4(keccak256('countOfDeedsByOwner(address)')) ^
// bytes4(keccak256('deedOfOwnerByIndex(uint256)')) ^ // bytes4(keccak256('deedOfOwnerByIndex(address,uint256)')) ^
// bytes4(keccak256('approve(address,uint256)')) ^ // bytes4(keccak256('approve(address,uint256)')) ^
// bytes4(keccak256('takeOwnership(uint256)')); // bytes4(keccak256('takeOwnership(uint256)'));