zava 7 years ago
parent
commit
2a560ad82f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      contracts/ownership/Inheritable.sol
  2. 1 1
      test/Inheritable.js

+ 1 - 1
contracts/ownership/Inheritable.sol

@@ -10,7 +10,7 @@ import './Ownable.sol';
  * case that the current owner stops "heartbeating". Only the heir can pronounce the
  * owner's death.
  */
-contract Inheritable2 is Ownable {
+contract Inheritable is Ownable {
   address public heir;
 
   // Time window the owner has to notify she is alive.

+ 1 - 1
test/Inheritable.js

@@ -7,7 +7,7 @@ import assertJump from './helpers/assertJump'
 
 const NULL_ADDRESS = '0x0000000000000000000000000000000000000000'
 
-const Inheritable = artifacts.require('../contracts/ownership/Inheritable2.sol')
+const Inheritable = artifacts.require('../contracts/ownership/Inheritable.sol')
 
 contract('Inheritable', function(accounts) {
   let inheritable