feat(descro): add DisputeTimeoutNotReached and InsufficientVaultBalance errors

This commit is contained in:
thesn10
2026-05-19 20:54:53 +02:00
parent fda1f8c524
commit 5448492616

View File

@@ -12,4 +12,8 @@ pub enum EscrowError {
UnauthorizedResolver,
#[msg("Escrow has expired")]
Expired,
#[msg("Dispute timeout period has not elapsed yet")]
DisputeTimeoutNotReached,
#[msg("Vault balance is insufficient for the requested escrow amount")]
InsufficientVaultBalance,
}