2018-05-13 21:09:34 +00:00
|
|
|
pragma solidity ^0.4.23;
|
2018-02-28 15:47:59 +00:00
|
|
|
|
|
|
|
import "../identity/IdentityKernel.sol";
|
|
|
|
|
2018-02-28 18:52:32 +00:00
|
|
|
|
2018-02-28 15:47:59 +00:00
|
|
|
contract UpdatedIdentityKernel is IdentityKernel {
|
|
|
|
|
2018-03-02 19:00:46 +00:00
|
|
|
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
|
2018-02-28 15:47:59 +00:00
|
|
|
|
|
|
|
function test() public {
|
2018-05-13 21:09:34 +00:00
|
|
|
emit TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
2018-02-28 18:52:32 +00:00
|
|
|
}
|
|
|
|
}
|