Skip to content

Commit

Permalink
Update the lock file for new dependencies
Browse files Browse the repository at this point in the history
The previous commit failed to add the lock file updates for utilizing
the new crates.
  • Loading branch information
nick-mobilecoin committed Jul 26, 2022
1 parent ffef27f commit 4a56eb3
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 1 deletion.
108 changes: 108 additions & 0 deletions untrusted/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion untrusted/quote_verify/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl Quote {

let mut key = root_cert.public_key();
for cert in certs.iter() {
cert.verify_signature(Some(&key))?;
cert.verify_signature(Some(key))?;
key = cert.public_key();
}
Ok(())
Expand Down

0 comments on commit 4a56eb3

Please sign in to comment.