Skip to content

Commit

Permalink
fix mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay111meher committed Jan 2, 2025
1 parent 89ce963 commit 11255d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helper/src/pcr_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub async fn build_attestation_vec(
attestation_end_point: &str,
print_logs: bool,
) -> Result<Vec<u8>, Box<dyn Error>> {
let attestation_stream = build_attestation_raw(attestation_end_point, print_logs)
let attestation_stream = build_attestation(attestation_end_point, print_logs)
.await
.map_err(|e| format!("Failed Building Attestations: {}", e))?;

Expand All @@ -81,7 +81,7 @@ pub async fn build_attestation_vec_raw(
base_url: &str,
print_logs: bool,
) -> Result<Vec<u8>, Box<dyn Error>> {
let attestation_stream = build_attestation(base_url, print_logs)
let attestation_stream = build_attestation_raw(base_url, print_logs)
.await
.map_err(|e| format!("Failed Building Attestations: {}", e))?;

Expand Down

0 comments on commit 11255d1

Please sign in to comment.