Browse Source

Removed unnecessary Secondary inheritance from RefundEscrow. (#1381)

(cherry picked from commit 308e5e9cc0bc9a65436cf3ae933551e1a62167ea)
Nicolás Venturo 7 years ago
parent
commit
0db1f8144d
1 changed files with 1 additions and 2 deletions
  1. 1 2
      contracts/payment/RefundEscrow.sol

+ 1 - 2
contracts/payment/RefundEscrow.sol

@@ -1,7 +1,6 @@
 pragma solidity ^0.4.24;
 
 import "./ConditionalEscrow.sol";
-import "../ownership/Secondary.sol";
 
 
 /**
@@ -10,7 +9,7 @@ import "../ownership/Secondary.sol";
  * The primary account may close the deposit period, and allow for either withdrawal
  * by the beneficiary, or refunds to the depositors.
  */
-contract RefundEscrow is Secondary, ConditionalEscrow {
+contract RefundEscrow is ConditionalEscrow {
   enum State { Active, Refunding, Closed }
 
   event Closed();