From a8883578fec43dc02fb43d73234474cbbe4ed447 Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Thu, 23 Jan 2025 20:35:54 +0400 Subject: [PATCH] fix --- crates/chain-state/src/in_memory.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/chain-state/src/in_memory.rs b/crates/chain-state/src/in_memory.rs index ca6702bfe2fb..64262297129e 100644 --- a/crates/chain-state/src/in_memory.rs +++ b/crates/chain-state/src/in_memory.rs @@ -893,9 +893,10 @@ pub enum NewCanonicalChain { /// All blocks of the _new_ chain new: Vec>, /// All blocks of the _old_ chain + /// /// These are not [`ExecutedBlockWithTrieUpdates`] because we don't always have the trie /// updates for the old canonical chain. For example, in case of node being restarted right - /// before the reorg TrieUpdates can't be fetched from database and won't be available. + /// before the reorg [`TrieUpdates`] can't be fetched from database. old: Vec>, }, }