Skip to content

Commit

Permalink
derived_key: fix function confidential-containers#3
Browse files Browse the repository at this point in the history
  • Loading branch information
eldios committed Feb 5, 2025
1 parent cb1d791 commit 28f514f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion attestation-agent/attester/src/snp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl Attester for SnpAttester {
.copied()
.context("Invalid key or empty key specified")?;

let mut firmware: Firmware = Firmware::open()?.unwrap();
let mut firmware: Firmware = Firmware::open()?;

// Create DerivedKey request with the documented parameters
let request = DerivedKey::new(
Expand Down

0 comments on commit 28f514f

Please sign in to comment.