Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changed view for constant
  • Loading branch information
azavalla committed Nov 30, 2017
commit 4f563dfa7d78963aad56efca4a4aa68c955c98cc
2 changes: 1 addition & 1 deletion contracts/ownership/Inheritable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}