From 2a560ad82fad8dfe182671d56ed2d2c10f279cfe Mon Sep 17 00:00:00 2001 From: zava Date: Thu, 23 Nov 2017 17:56:11 -0300 Subject: [PATCH] name fix --- contracts/ownership/Inheritable.sol | 2 +- test/Inheritable.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/ownership/Inheritable.sol b/contracts/ownership/Inheritable.sol index b5a663b6d..fe325aa18 100644 --- a/contracts/ownership/Inheritable.sol +++ b/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. diff --git a/test/Inheritable.js b/test/Inheritable.js index 14b49fe71..143caef4e 100644 --- a/test/Inheritable.js +++ b/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