mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-01-15 08:54:38 +00:00
12 lines
279 B
Solidity
12 lines
279 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
import "../deploy/DelayedUpdatableInstanceStorage.sol";
|
|
import "./Identity.sol";
|
|
|
|
contract IdentityKernel is DelayedUpdatableInstanceStorage, Identity {
|
|
|
|
function initIdentity(address _caller) external {
|
|
_constructIdentity(_caller);
|
|
}
|
|
}
|