You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
22 lines
579 B
pragma solidity ^0.4.23;
|
|
|
|
import "./Escrow.sol";
|
|
|
|
|
|
/**
|
|
* @title ConditionalEscrow
|
|
* @dev Base abstract escrow to only allow withdrawal if a condition is met.
|
|
*/
|
|
contract ConditionalEscrow is Escrow {
|
|
/**
|
|
* @dev Returns whether an address is allowed to withdraw their funds. To be
|
|
* implemented by derived contracts.
|
|
* @param _payee The destination address of the funds.
|
|
*/
|
|
function withdrawalAllowed(address _payee) public view returns (bool);
|
|
|
|
function withdraw(address _payee) public {
|
|
require(withdrawalAllowed(_payee));
|
|
super.withdraw(_payee);
|
|
}
|
|
}
|
|
|