From 11453e65e64860d2460ad648d01ab9ae8fb0d069 Mon Sep 17 00:00:00 2001 From: Romashka Date: Mon, 23 Dec 2024 19:36:37 +0200 Subject: [PATCH] typo-Update chain.rs --- chain/chain/src/chain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/chain/src/chain.rs b/chain/chain/src/chain.rs index b8029caa135..77fa1a00aa8 100644 --- a/chain/chain/src/chain.rs +++ b/chain/chain/src/chain.rs @@ -3915,7 +3915,7 @@ impl Chain { } /// Function to check whether we need to create a new snapshot while processing the current block - /// Note that this functions is called as a part of block preprocesing, so the head is not updated to current block + /// Note that this functions is called as a part of block preprocessing, so the head is not updated to current block fn should_make_or_delete_snapshot(&mut self) -> Result { // head value is that of the previous block, i.e. curr_block.prev_hash let head = self.head()?;