* 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
325 B
Solidity
12 lines
325 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "../introspection/ERC1820Implementer.sol";
|
|
|
|
contract ERC1820ImplementerMock is ERC1820Implementer {
|
|
function registerInterfaceForAddress(bytes32 interfaceHash, address account) public {
|
|
_registerInterfaceForAddress(interfaceHash, account);
|
|
}
|
|
}
|