Skip to content

Commit

Permalink
fixing warnings WIP(5)
Browse files Browse the repository at this point in the history
  • Loading branch information
valdok committed Mar 27, 2024
1 parent 468baf6 commit 5e3d49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmwasm/enclaves/execute/src/registration/attestation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ pub fn get_quote_ecdsa(pub_k: &[u8; 32]) -> Result<(Vec<u8>, Vec<u8>), sgx_statu
return Err(e);
}

let mut vec_coll: Vec<u8> = vec![0; 0x4000 as usize];
let mut vec_coll: Vec<u8> = vec![0; 0x4000];
let mut size_coll: u32 = 0;

res = unsafe {
Expand Down

0 comments on commit 5e3d49c

Please sign in to comment.