From 894ba1934548c6463912bae44b86d52e66f41397 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Fri, 30 May 2025 09:06:39 +0300 Subject: [PATCH] fix: fmt --- node_core/src/chain_storage/block_store.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/node_core/src/chain_storage/block_store.rs b/node_core/src/chain_storage/block_store.rs index 553594e..208a7b3 100644 --- a/node_core/src/chain_storage/block_store.rs +++ b/node_core/src/chain_storage/block_store.rs @@ -75,7 +75,9 @@ impl NodeBlockStore { .inspect_err(|err| error!("Failed to store snapshot accounts with error {err:#?}"))?; self.dbio .put_snapshot_commitement_db(comm_ser) - .inspect_err(|err| error!("Failed to store snapshot commitments with error {err:#?}"))?; + .inspect_err(|err| { + error!("Failed to store snapshot commitments with error {err:#?}") + })?; self.dbio .put_snapshot_transaction_db(txs_ser) .inspect_err(|err| {