From 5c388e972970720f1a1c0ec47fc4ca827f490fb8 Mon Sep 17 00:00:00 2001 From: vlad Date: Sun, 3 Nov 2024 12:15:59 +0000 Subject: [PATCH] build fix (2) --- cosmwasm/enclaves/execute/src/registration/attestation.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cosmwasm/enclaves/execute/src/registration/attestation.rs b/cosmwasm/enclaves/execute/src/registration/attestation.rs index 8bd3e326f..bf63c65e2 100644 --- a/cosmwasm/enclaves/execute/src/registration/attestation.rs +++ b/cosmwasm/enclaves/execute/src/registration/attestation.rs @@ -538,15 +538,15 @@ pub fn get_quote_ecdsa_untested(pub_k: &[u8]) -> Result<(Vec, Vec), 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))