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 Jan 27, 2025
1 parent a3f1c7b commit 353ca0a
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 @@ -80,7 +80,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 353ca0a

Please sign in to comment.