Commit 7d83a086 by Manuel Araoz

8.2.3 removed ownable

parent 2ccbfea8
pragma solidity ^0.4.8; pragma solidity ^0.4.8;
import './Ownable.sol';
import './Claimable.sol'; import './Claimable.sol';
...@@ -9,7 +8,7 @@ import './Claimable.sol'; ...@@ -9,7 +8,7 @@ import './Claimable.sol';
* DelayedClaimable * DelayedClaimable
* Extension for the Claimable contract, where the ownership needs to be claimed before/after certain block number * 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 end;
uint public start; uint public start;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment