Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Jan 21, 2025
1 parent 6aa01fd commit 74b3927
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub async fn recover_encryption_key(
let nonce = {
let nonces =
app_state.attestation_nonces.read().map_err(|_| BackupProviderError::RwLockPoison)?;
nonces.get(&key_request.response_key).ok_or(BackupProviderError::NoNonceInStore)?.clone()
*nonces.get(&key_request.response_key).ok_or(BackupProviderError::NoNonceInStore)?
};

let expected_input_data = QuoteInputData::new(
Expand Down

0 comments on commit 74b3927

Please sign in to comment.