Skip to content

Commit

Permalink
Fix inactive_guardian
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Aug 28, 2024
1 parent 5243a5d commit 7c0c681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/relayer/src/modules/web_server/rest_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ pub async fn inactive_guardian(payload: InactiveGuardianRequest) -> Response<Bod
let account_eth_addr: Address = payload.account_eth_addr.parse().unwrap();
let account_eth_addr = format!("0x{:x}", &account_eth_addr);
trace!(LOG, "Inactive guardian"; "account_eth_addr" => &account_eth_addr);
DB.update_credentials_of_inactive_guardian(false, &payload.account_eth_addr)
DB.update_credentials_of_inactive_guardian(false, &account_eth_addr)
.await
.expect("Failed to update credentials");

Expand Down

0 comments on commit 7c0c681

Please sign in to comment.