Skip to content

Commit

Permalink
refactor: to camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
zkfriendly committed Nov 30, 2024
1 parent c9584c8 commit 743c008
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/relayer/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ pub async fn account_salt_handler(
relayer_utils::calculate_account_salt(&body.email_address, &body.account_code);

let response = json!({
"email_address": body.email_address,
"account_code": body.account_code,
"account_salt": account_salt,
"emailAddress": body.email_address,
"accountCode": body.account_code,
"accountSalt": account_salt,
});

Ok((StatusCode::OK, Json(response)))
Expand Down

0 comments on commit 743c008

Please sign in to comment.