changed view for constant

This commit is contained in:
zava
2017-11-29 15:18:03 -03:00
committed by Alejandro Santander
parent 433213537f
commit c7807c5b58

View File

@ -92,7 +92,7 @@ contract Inheritable is Ownable {
timeOfDeath = 0; timeOfDeath = 0;
} }
function ownerLives() internal view returns (bool) { function ownerLives() internal constant returns (bool) {
return timeOfDeath == 0; return timeOfDeath == 0;
} }
} }