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| {