updated to new solidity keywords and linting

This commit is contained in:
Ricardo Guilherme Schmidt 2018-03-30 02:31:08 -03:00
parent 497076382b
commit ac54537b74
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.17; pragma solidity ^0.4.21;
/** /**
@ -29,7 +29,7 @@ contract DelegatedCall {
*/ */
function targetDelegatedCall() function targetDelegatedCall()
internal internal
constant view
returns(address); returns(address);
} }

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.17; pragma solidity ^0.4.21;
import "./InstanceStorage.sol"; import "./InstanceStorage.sol";
import "./DelegatedCall.sol"; import "./DelegatedCall.sol";
@ -28,7 +28,7 @@ contract Instance is InstanceStorage, DelegatedCall {
*/ */
function targetDelegatedCall() function targetDelegatedCall()
internal internal
constant view
returns(address) returns(address)
{ {
return kernel; return kernel;