We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 744f567 commit 308e5e9Copy full SHA for 308e5e9
contracts/payment/RefundEscrow.sol
@@ -1,15 +1,14 @@
1
pragma solidity ^0.4.24;
2
3
import "./ConditionalEscrow.sol";
4
-import "../ownership/Secondary.sol";
5
6
/**
7
* @title RefundEscrow
8
* @dev Escrow that holds funds for a beneficiary, deposited from multiple parties.
9
* The primary account may close the deposit period, and allow for either withdrawal
10
* by the beneficiary, or refunds to the depositors.
11
*/
12
-contract RefundEscrow is Secondary, ConditionalEscrow {
+contract RefundEscrow is ConditionalEscrow {
13
enum State { Active, Refunding, Closed }
14
15
event Closed();
0 commit comments