From ba2525595ec5f3360c9b91233ac40f2aa500e73e Mon Sep 17 00:00:00 2001 From: cts <14918218+stong@users.noreply.github.com> Date: Thu, 12 Mar 2026 18:09:04 -0400 Subject: [PATCH] Remove revert for invalid status in Escrow Removed revert statement for invalid status in Escrow contract. --- src/Escrow.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Escrow.sol b/src/Escrow.sol index d2dee86a..652d20d9 100644 --- a/src/Escrow.sol +++ b/src/Escrow.sol @@ -162,8 +162,6 @@ contract Escrow is IEscrow { statuses[escrowId] = EscrowStatus.REFUND_DEPOSIT; } else if (status == EscrowStatus.REFUND_RECIPIENT) { statuses[escrowId] = EscrowStatus.FINALIZED; - } else { - revert InvalidStatus(); } if (_escrow.refundAmount > 0) {