We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e232fb2 commit 6df3c3bCopy full SHA for 6df3c3b
contracts/token/ERC721/ERC721Basic.sol
@@ -1,6 +1,6 @@
1
pragma solidity ^0.4.23;
2
3
-import "../../introspection/SupportsInterfaceWithLookup.sol";
+import "../../introspection/ERC165.sol";
4
5
6
/**
contracts/token/ERC721/ERC721BasicToken.sol
@@ -11,7 +11,7 @@ import "../../introspection/SupportsInterfaceWithLookup.sol";
11
* @title ERC721 Non-Fungible Token Standard basic implementation
12
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
13
*/
14
-contract ERC721BasicToken is ERC721Basic, SupportsInterfaceWithLookup {
+contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {
15
16
bytes4 private constant InterfaceId_ERC721 = 0x80ac58cd;
17
/*
0 commit comments