Skip to content

Commit

Permalink
fix: change inheritance order, fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
shrugs committed Jun 12, 2018
1 parent d36668c commit 8ce165f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/token/ERC721/ERC721Basic.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity ^0.4.23;

import "../../introspection/SupportsInterfaceWithLookup.sol";
import "../../introspection/ERC165.sol";


/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC721/ERC721BasicToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "../../introspection/SupportsInterfaceWithLookup.sol";
* @title ERC721 Non-Fungible Token Standard basic implementation
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
*/
contract ERC721BasicToken is ERC721Basic, SupportsInterfaceWithLookup {
contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {

bytes4 private constant InterfaceId_ERC721 = 0x80ac58cd;
/*
Expand Down

0 comments on commit 8ce165f

Please sign in to comment.