Removed unnecessary Secondary inheritance from RefundEscrow. (#1381)

pull/1389/merge
Nicolás Venturo 6 years ago committed by GitHub
parent 744f567f40
commit 308e5e9cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      contracts/payment/RefundEscrow.sol

@ -1,7 +1,6 @@
pragma solidity ^0.4.24;
import "./ConditionalEscrow.sol";
import "../ownership/Secondary.sol";
/**
* @title RefundEscrow
@ -9,7 +8,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();

Loading…
Cancel
Save