@@ -39,7 +39,6 @@ contract Escrow is Secondary {
*/
function withdraw(address payee) public onlyPrimary {
uint256 payment = _deposits[payee];
- assert(address(this).balance >= payment);
_deposits[payee] = 0;
@@ -84,7 +84,6 @@ contract SplitPayment {
);
require(payment != 0);
_released[account] = _released[account].add(payment);
_totalReleased = _totalReleased.add(payment);