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 {
|
||||
|
@ -6,7 +6,7 @@ contract TestContract {
|
|||
event TestFunctionExecuted();
|
||||
|
||||
function test() public {
|
||||
TestFunctionExecuted();
|
||||
emit TestFunctionExecuted();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.17;
|
||||
pragma solidity ^0.4.23;
|
||||
|
||||
import "../identity/IdentityKernel.sol";
|
||||
|
||||
|
@ -8,6 +8,6 @@ contract UpdatedIdentityKernel is IdentityKernel {
|
|||
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
|
||||
|
||||
function test() public {
|
||||
TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
||||
emit TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue