Skip to content
Snippets Groups Projects
Unverified Commit 9e4abc7a authored by Rodrigo Quelhas's avatar Rodrigo Quelhas Committed by GitHub
Browse files

Update substrate/client/executor/src/wasm_runtime.rs


Co-authored-by: default avatarBastian Köcher <git@kchr.de>
parent 2da154a7
Branches
No related merge requests found
......@@ -483,10 +483,12 @@ fn compute_artifact_version(
code_hash: &[u8],
semantics: &sc_executor_wasmtime::Semantics,
) -> String {
log::trace!(
tracing::trace!(
target: "wasmtime-runtime",
"Computing wasm runtime hash [allow_missing_func_imports: {}, code_hash: {}, semantics: {:?}]",
allow_missing_func_imports, sp_core::bytes::to_hex(&code_hash, false), semantics
allow_missing_func_imports,
code_hash = sp_core::bytes::to_hex(&code_hash, false),
?semantics,
"Computing wasm runtime hash",
);
let mut buffer = Vec::new();
buffer.extend_from_slice(code_hash);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment