mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-06 11:33:28 +00:00
13 lines
300 B
Solidity
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]);
|
|
}
|
|
} |