Skip to content

Commit

Permalink
build fix (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad committed Nov 3, 2024
1 parent fefde6f commit 5c388e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cosmwasm/enclaves/execute/src/registration/attestation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,15 +538,15 @@ pub fn get_quote_ecdsa_untested(pub_k: &[u8]) -> Result<(Vec<u8>, Vec<u8>), sgx_

println!(
"mr_signer = {}",
orig_hex::encode(&my_report.body.mr_signer.m)
orig_hex::encode(my_report.body.mr_signer.m)
);
println!(
"mr_enclave = {}",
orig_hex::encode(&my_report.body.mr_enclave.m)
orig_hex::encode(my_report.body.mr_enclave.m)
);
println!(
"report_data = {}",
orig_hex::encode(&my_report.body.report_data.d)
orig_hex::encode(my_report.body.report_data.d)
);

Ok((vec_quote, vec_coll))
Expand Down

0 comments on commit 5c388e9

Please sign in to comment.