Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions quicklendx-contracts/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ use soroban_sdk::{contracterror, symbol_short, Symbol};
/// The Soroban XDR spec allows a maximum of 50 error variants per contract.
/// All 50 slots are used; new variants require replacing an existing one.
#[contracterror]
#[derive(Copy, Clone, Eq, PartialEq, PartialOrd, Ord)]
#[cfg_attr(test, derive(Debug))]
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
#[repr(u32)]
pub enum QuickLendXError {
// Invoice lifecycle (1000–1006)
Expand Down
Loading
Loading