Use Correct Error

This commit is contained in:
Samuel Lorch 2023-11-01 15:11:28 +01:00
parent 277753dde5
commit 0895f0892e
2 changed files with 5 additions and 1 deletions

View file

@ -19,6 +19,9 @@ pub enum ApiError {
#[error("Not Found")]
NotFound,
#[error("Already Exists")]
AlreadyExists,
#[error("Hash Error")]
HashError(#[from] pwhash::error::Error),

View file

@ -7,6 +7,7 @@ use jsonrpsee::RpcModule;
use pwhash::sha512_crypt;
use serde::{Deserialize, Serialize};
use ApiError::AlreadyExists;
use ApiError::ConfigError;
use ApiError::HashError;
use ApiError::NotFound;
@ -124,7 +125,7 @@ pub fn create_user(p: Params, state: &RpcState) -> Result<(), ApiError> {
.map_err(ConfigError)
} else {
tx.revert();
Err(NotFound)
Err(AlreadyExists)
}
}