snt-gas-relay/contracts/tests/UpdatedIdentityKernel.sol
Ricardo Guilherme Schmidt 09c3863025 bump solc version
2018-05-13 18:09:34 -03:00

13 lines
300 B
Solidity

pragma solidity ^0.4.23;
import "../identity/IdentityKernel.sol";
contract UpdatedIdentityKernel is IdentityKernel {
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
function test() public {
emit TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
}
}