Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles committed Jul 18, 2024
1 parent c653335 commit 480a596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/canisters/local_user_index/impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl RuntimeState {
user_details.unique_person_proof = credential_jwts.as_ref().and_then(|jwts| {
let now = self.env.now();
self.data
.extract_proof_of_unique_personhood(user_details.principal, &jwts, now)
.extract_proof_of_unique_personhood(user_details.principal, jwts, now)
});
}

Expand Down
2 changes: 1 addition & 1 deletion backend/libraries/proof_of_unique_personhood/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn verify_proof_of_unique_personhood(
now: TimestampMillis,
) -> Result<UniquePersonProof, String> {
match ic_verifiable_credentials::validate_ii_presentation_and_claims(
&credential_jwt,
credential_jwt,
principal,
&VcFlowSigners {
ii_canister_id: internet_identity_canister_id,
Expand Down

0 comments on commit 480a596

Please sign in to comment.