diff --git a/contracts/ownership/Inheritable.sol b/contracts/ownership/Inheritable.sol index 640e92d7e..88e65cf14 100644 --- a/contracts/ownership/Inheritable.sol +++ b/contracts/ownership/Inheritable.sol @@ -92,7 +92,7 @@ contract Inheritable is Ownable { timeOfDeath = 0; } - function ownerLives() internal view returns (bool) { + function ownerLives() internal constant returns (bool) { return timeOfDeath == 0; } }