()
| 440 | } |
| 441 | |
| 442 | pub fn internal_error_reply() -> Response { |
| 443 | ( |
| 444 | StatusCode::INTERNAL_SERVER_ERROR, |
| 445 | error("InternalServerError", ""), |
| 446 | ) |
| 447 | .into_response() |
| 448 | } |
| 449 | |
| 450 | // Newtype wrapper for PriceEstimationError to allow IntoResponse implementation |
| 451 | // (orphan rules prevent implementing IntoResponse directly on external types) |
no test coverage detected