From d68619d84daad157f801f6c4cc19259372e091eb Mon Sep 17 00:00:00 2001 From: parazyd Date: Wed, 3 Apr 2024 11:17:19 +0200 Subject: [PATCH] runtime/import/smt: Correct log message --- src/runtime/import/smt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/import/smt.rs b/src/runtime/import/smt.rs index f8f279c14..5745b5a50 100644 --- a/src/runtime/import/smt.rs +++ b/src/runtime/import/smt.rs @@ -47,7 +47,7 @@ impl<'a> StorageAdapter for SledStorage<'a> { if let Err(e) = self.overlay.insert(self.tree_key, &key.to_bytes_le(), &value.to_repr()) { error!( target: "runtime::smt::SledStorage::put", - "[WASM] sparse_merkle_insert_batch(): inserting key {:?}, value {:?} into DB tree: {:?}: {}", + "[WASM] SledStorage::put(): inserting key {:?}, value {:?} into DB tree: {:?}: {}", key, value, self.tree_key, e, ); return Err(ContractError::SmtPutFailed)