| 2 | |
| 3 | #[error_code] |
| 4 | pub enum ErrorCode { |
| 5 | #[msg("No Profit at the end. Reverting...")] |
| 6 | NoProfit, |
| 7 | #[msg("Trying to swap when Information is invalid.")] |
| 8 | InvalidState, |
| 9 | #[msg("not enough funds: amount_in > src_balance.")] |
| 10 | NotEnoughFunds, |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected