Skip to content

Commit 6df3c3b

Browse files
committed
fix: change inheritance order, fix import
1 parent e232fb2 commit 6df3c3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/token/ERC721/ERC721Basic.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pragma solidity ^0.4.23;
22

3-
import "../../introspection/SupportsInterfaceWithLookup.sol";
3+
import "../../introspection/ERC165.sol";
44

55

66
/**

contracts/token/ERC721/ERC721BasicToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import "../../introspection/SupportsInterfaceWithLookup.sol";
1111
* @title ERC721 Non-Fungible Token Standard basic implementation
1212
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
1313
*/
14-
contract ERC721BasicToken is ERC721Basic, SupportsInterfaceWithLookup {
14+
contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {
1515

1616
bytes4 private constant InterfaceId_ERC721 = 0x80ac58cd;
1717
/*

0 commit comments

Comments
 (0)