marked ownerLives as view

This commit is contained in:
zava
2017-11-28 22:04:10 -03:00
committed by Alejandro Santander
parent d808e49b51
commit 80ae074c57

View File

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