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 'pronounce' for 'proclaim'
  • Loading branch information
azavalla committed Nov 30, 2017
commit d15c02e60c77b17c3e0e59672e03d72bb166a539
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