From 0db1f8144d3e58cbab1159cc3cae15aefeab4a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Thu, 4 Oct 2018 11:15:22 -0300 Subject: [PATCH] Removed unnecessary Secondary inheritance from RefundEscrow. (#1381) (cherry picked from commit 308e5e9cc0bc9a65436cf3ae933551e1a62167ea) --- contracts/payment/RefundEscrow.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/payment/RefundEscrow.sol b/contracts/payment/RefundEscrow.sol index ae7f9c463..acad2ba3c 100644 --- a/contracts/payment/RefundEscrow.sol +++ b/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();