From 5df8763166fb230effcaaff25445d127e7823cc8 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Fri, 30 May 2025 14:08:06 +0300 Subject: [PATCH] fix: suggestion added 1 --- node_core/src/chain_storage/block_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_core/src/chain_storage/block_store.rs b/node_core/src/chain_storage/block_store.rs index a14ec19..0f9d17c 100644 --- a/node_core/src/chain_storage/block_store.rs +++ b/node_core/src/chain_storage/block_store.rs @@ -84,7 +84,7 @@ impl NodeBlockStore { error!("Failed to store snapshot transactions with error {err:#?}") })?; self.dbio - .put_snapshot_account_db(nullifiers_ser) + .put_snapshot_nullifier_db(nullifiers_ser) .inspect_err(|err| error!("Failed to store snapshot nullifiers with error {err:#?}"))?; Ok(())