Skip to content

Commit

Permalink
changed 'pronounce' for 'proclaim'
Browse files Browse the repository at this point in the history
  • Loading branch information
azavalla authored and eternauta1337 committed Jan 18, 2018
1 parent a8afb20 commit d808e49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/ownership/Inheritable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract Inheritable is Ownable {

event HeirChanged(address indexed owner, address indexed newHeir);
event OwnerHeartbeated(address indexed owner);
event OwnerPronouncedDead(address indexed owner, address indexed heir, uint timeOfDeath);
event OwnerProclaimedDead(address indexed owner, address indexed heir, uint timeOfDeath);
event Inherited(address indexed previousOwner, address indexed newOwner);


Expand Down Expand Up @@ -67,9 +67,9 @@ contract Inheritable is Ownable {
* @dev Heir can pronounce the owners death. To inherit the ownership, they will
* have to wait for `heartbeatTimeout` seconds.
*/
function pronounceDeath() public onlyHeir {
function proclaimDeath() public onlyHeir {
require(ownerLives());
OwnerPronouncedDead(owner, heir, timeOfDeath);
OwnerProclaimedDead(owner, heir, timeOfDeath);
timeOfDeath = now;
}

Expand Down

0 comments on commit d808e49

Please sign in to comment.