updated to new solidity keywords and linting
This commit is contained in:
parent
497076382b
commit
ac54537b74
|
@ -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);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue