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>, }, }