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))