Skip to content
Closed
Show file tree
Hide file tree
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
name fix
  • Loading branch information
azavalla committed Nov 30, 2017
commit dfc58f4a3bc9272367d2037dee79c5c3c65e3de5
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