Removing unused function

This commit is contained in:
Richard Ramos 2018-02-28 14:39:22 -04:00
parent b096936f98
commit e9b9963153
1 changed files with 0 additions and 6 deletions

View File

@ -4,12 +4,6 @@ import "../identity/IdentityKernel.sol";
contract UpdatedIdentityKernel is IdentityKernel { contract UpdatedIdentityKernel is IdentityKernel {
function initIdentity(address _caller) external {
require(minimumApprovalsByKeyType[MANAGEMENT_KEY] == 0);
_addKey(bytes32(_caller), MANAGEMENT_KEY, 0);
minimumApprovalsByKeyType[MANAGEMENT_KEY] = 1;
}
event TestFunctionExecuted(uint8 minApprovalsByManagementKeys); event TestFunctionExecuted(uint8 minApprovalsByManagementKeys);
function test() public { function test() public {