Transpile 2d97b6b4
This commit is contained in:
@ -7,8 +7,6 @@ import "../proxy/utils/Initializable.sol";
|
||||
|
||||
contract ERC1820ImplementerMockUpgradeable is Initializable, ERC1820ImplementerUpgradeable {
|
||||
function __ERC1820ImplementerMock_init() internal onlyInitializing {
|
||||
__ERC1820Implementer_init_unchained();
|
||||
__ERC1820ImplementerMock_init_unchained();
|
||||
}
|
||||
|
||||
function __ERC1820ImplementerMock_init_unchained() internal onlyInitializing {
|
||||
@ -16,5 +14,11 @@ contract ERC1820ImplementerMockUpgradeable is Initializable, ERC1820ImplementerU
|
||||
function registerInterfaceForAddress(bytes32 interfaceHash, address account) public {
|
||||
_registerInterfaceForAddress(interfaceHash, account);
|
||||
}
|
||||
|
||||
/**
|
||||
* This empty reserved space is put in place to allow future versions to add new
|
||||
* variables without shifting down storage in the inheritance chain.
|
||||
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
|
||||
*/
|
||||
uint256[50] private __gap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user