Skip to content

Commit

Permalink
name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
azavalla authored and eternauta1337 committed Jan 18, 2018
1 parent 4fe2157 commit 2a560ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/ownership/Inheritable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/Inheritable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a560ad

Please sign in to comment.