mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-25 12:15:19 +00:00
12 lines
290 B
Solidity
12 lines
290 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(keccak256(_caller));
|
|
}
|
|
}
|