Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve transaction status error handling
Introduce a dedicated error variable for transaction not found cases in the adapter layer. This separates internal error handling from API errors and follows Go best practices by using errors.Is() for comparisons. The change: - Adds errTransactionNotFound for internal error handling - Replaces string-based error comparison with errors.Is() - Maintains existing API behavior while improving code maintainability
- Loading branch information