From 7d83a08658c49d5e7f2a8d5e920984949dc94856 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 20 Mar 2017 18:31:36 -0300 Subject: [PATCH] 8.2.3 removed ownable --- contracts/ownership/DelayedClaimable.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/ownership/DelayedClaimable.sol b/contracts/ownership/DelayedClaimable.sol index 349400a6b..77425d805 100644 --- a/contracts/ownership/DelayedClaimable.sol +++ b/contracts/ownership/DelayedClaimable.sol @@ -1,7 +1,6 @@ pragma solidity ^0.4.8; -import './Ownable.sol'; import './Claimable.sol'; @@ -9,7 +8,7 @@ import './Claimable.sol'; * DelayedClaimable * Extension for the Claimable contract, where the ownership needs to be claimed before/after certain block number */ -contract DelayedClaimable is Ownable, Claimable { +contract DelayedClaimable is Claimable { uint public end; uint public start;