diff --git a/precompiles/xvm/src/lib.rs b/precompiles/xvm/src/lib.rs index 78c4827739..db838453dd 100644 --- a/precompiles/xvm/src/lib.rs +++ b/precompiles/xvm/src/lib.rs @@ -87,6 +87,10 @@ where let from = R::AddressMapping::into_account_id(handle.context().caller); + log::trace!( + target: "xvm-precompile::xvm_call", + "vm_id: {:?}, from: {:?}, call_to: {:?}, call_input: {:?}, value: {:?}, limit: {:?}", vm_id, from, call_to, call_input, value, limit + ); let call_result = XC::call(xvm_context, vm_id, from, call_to, call_input, value, limit); let used_weight = match &call_result { diff --git a/runtime/shiden/src/precompiles.rs b/runtime/shiden/src/precompiles.rs index aeced70dcc..6a8cb319ca 100644 --- a/runtime/shiden/src/precompiles.rs +++ b/runtime/shiden/src/precompiles.rs @@ -16,7 +16,7 @@ // You should have received a copy of the GNU General Public License // along with Astar. If not, see . -//! The Astar Network EVM precompiles. This can be compiled with ``#[no_std]`, ready for Wasm. +//! The Shiden Network EVM precompiles. This can be compiled with ``#[no_std]`, ready for Wasm. use crate::RuntimeCall; use astar_primitives::precompiles::DispatchFilterValidate;