2018-02-28 04:36:48 +00:00
|
|
|
pragma solidity ^0.4.17;
|
|
|
|
|
|
|
|
import "../deploy/InstanceStorage.sol";
|
|
|
|
import "./Identity.sol";
|
|
|
|
|
|
|
|
contract IdentityKernel is InstanceStorage, Identity {
|
|
|
|
|
|
|
|
function initIdentity(address _caller) external {
|
2018-03-03 20:16:32 +00:00
|
|
|
_constructIdentity(_caller);
|
2018-02-28 04:36:48 +00:00
|
|
|
}
|
|
|
|
}
|