mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-01-16 01:14:25 +00:00
13 lines
295 B
Solidity
13 lines
295 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
import "../identity/IdentityKernel.sol";
|
|
|
|
|
|
contract UpdatedIdentityKernel is IdentityKernel {
|
|
|
|
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
|
|
|
|
function test() public {
|
|
TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
|
}
|
|
} |