Skip to content

Commit 308e5e9

Browse files
authored
Removed unnecessary Secondary inheritance from RefundEscrow. (#1381)
1 parent 744f567 commit 308e5e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contracts/payment/RefundEscrow.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
pragma solidity ^0.4.24;
22

33
import "./ConditionalEscrow.sol";
4-
import "../ownership/Secondary.sol";
54

65
/**
76
* @title RefundEscrow
87
* @dev Escrow that holds funds for a beneficiary, deposited from multiple parties.
98
* The primary account may close the deposit period, and allow for either withdrawal
109
* by the beneficiary, or refunds to the depositors.
1110
*/
12-
contract RefundEscrow is Secondary, ConditionalEscrow {
11+
contract RefundEscrow is ConditionalEscrow {
1312
enum State { Active, Refunding, Closed }
1413

1514
event Closed();

0 commit comments

Comments
 (0)