* rename SupportsInterfaceWithLookup to ERC165 * rename SupportsInterfaceWithLookup files to ERC165
13 lines
207 B
Solidity
13 lines
207 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../introspection/ERC165.sol";
|
|
|
|
|
|
contract ERC165Mock is ERC165 {
|
|
function registerInterface(bytes4 _interfaceId)
|
|
public
|
|
{
|
|
_registerInterface(_interfaceId);
|
|
}
|
|
}
|