bump solc version
This commit is contained in:
parent
79bad75e54
commit
09c3863025
|
@ -1,4 +1,4 @@
|
||||||
pragma solidity ^0.4.17;
|
pragma solidity ^0.4.23;
|
||||||
|
|
||||||
|
|
||||||
contract TestContract {
|
contract TestContract {
|
||||||
|
@ -6,7 +6,7 @@ contract TestContract {
|
||||||
event TestFunctionExecuted();
|
event TestFunctionExecuted();
|
||||||
|
|
||||||
function test() public {
|
function test() public {
|
||||||
TestFunctionExecuted();
|
emit TestFunctionExecuted();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
pragma solidity ^0.4.17;
|
pragma solidity ^0.4.23;
|
||||||
|
|
||||||
import "../identity/IdentityKernel.sol";
|
import "../identity/IdentityKernel.sol";
|
||||||
|
|
||||||
|
@ -8,6 +8,6 @@ contract UpdatedIdentityKernel is IdentityKernel {
|
||||||
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
|
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
|
||||||
|
|
||||||
function test() public {
|
function test() public {
|
||||||
TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
emit TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue