From 42bce5c1fc146a9a48c27fec97f190038e405aa4 Mon Sep 17 00:00:00 2001 From: Assaf Morami Date: Sun, 30 Jul 2023 20:54:43 +0300 Subject: [PATCH] Try to bust the CI LocalSecret cache to hopefully make ffdc0e4 work --- .../shared/contract-engine/src/contract_operations.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cosmwasm/enclaves/shared/contract-engine/src/contract_operations.rs b/cosmwasm/enclaves/shared/contract-engine/src/contract_operations.rs index 95d723402..6b478ab96 100644 --- a/cosmwasm/enclaves/shared/contract-engine/src/contract_operations.rs +++ b/cosmwasm/enclaves/shared/contract-engine/src/contract_operations.rs @@ -248,14 +248,14 @@ fn update_random_with_msg_counter( versioned_env: &mut CwEnv, ) { let old_random = versioned_env.get_random(); - debug!("Old random: {:?}", old_random); + debug!("Old random: {:x?}", old_random); // rand is None if env is v0.10 if let Some(rand) = old_random { versioned_env.set_random(Some(derive_random(&rand, contract_key, block_height))); } - debug!("New random: {:?}", versioned_env.get_random()); + debug!("New random: {:x?}", versioned_env.get_random()); } fn to_canonical(contract_address: &BaseAddr) -> Result { @@ -752,7 +752,7 @@ pub fn handle( *used_gas = used_gas.saturating_sub(refund_cache_gas); debug!( - "(2) nonce just before encrypt_output: nonce = {:?} pubkey = {:?}", + "(2) nonce just before encrypt_output: nonce = {:x?} pubkey = {:x?}", secret_msg.nonce, secret_msg.user_public_key ); if should_encrypt_output {