Unverified Commit 308e5e9c by Nicolás Venturo Committed by GitHub

Removed unnecessary Secondary inheritance from RefundEscrow. (#1381)

parent 744f567f
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "./ConditionalEscrow.sol"; import "./ConditionalEscrow.sol";
import "../ownership/Secondary.sol";
/** /**
* @title RefundEscrow * @title RefundEscrow
...@@ -9,7 +8,7 @@ import "../ownership/Secondary.sol"; ...@@ -9,7 +8,7 @@ import "../ownership/Secondary.sol";
* The primary account may close the deposit period, and allow for either withdrawal * The primary account may close the deposit period, and allow for either withdrawal
* by the beneficiary, or refunds to the depositors. * by the beneficiary, or refunds to the depositors.
*/ */
contract RefundEscrow is Secondary, ConditionalEscrow { contract RefundEscrow is ConditionalEscrow {
enum State { Active, Refunding, Closed } enum State { Active, Refunding, Closed }
event Closed(); event Closed();
......
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