From aeac22250eb70bd4a9ce16d1f9c527f7e9cc1bd6 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Tue, 2 Jul 2024 18:15:00 +0300 Subject: [PATCH] chore: Add `TwoDifferentKeys` error message Signed-off-by: Awiteb --- crates/oxidetalis/src/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxidetalis/src/errors.rs b/crates/oxidetalis/src/errors.rs index ed419ad..8c3105f 100644 --- a/crates/oxidetalis/src/errors.rs +++ b/crates/oxidetalis/src/errors.rs @@ -52,7 +52,7 @@ pub enum ApiError { /// The user enterd tow different public keys /// one in the header and other in the request body /// (400 Bad Request) - #[error("TODO")] + #[error("You entered two different public keys")] TwoDifferentKeys, }