* Update contract pragmas to solidity 0.7 * Remove internal declaration on constructors * Reference SafeMath explicitely * Remove public constructor declaration from abstract contracts * Remove public constructor declaration from non-abstract contracts
12 lines
238 B
Solidity
12 lines
238 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "../introspection/ERC165.sol";
|
|
|
|
contract ERC165Mock is ERC165 {
|
|
function registerInterface(bytes4 interfaceId) public {
|
|
_registerInterface(interfaceId);
|
|
}
|
|
}
|