docs(trie): correct TrieInput::extend_with_blocks docstring (#20225)

This commit is contained in:
Brian Picciano
2025-12-10 03:03:42 +01:00
committed by GitHub
parent 9eeba7e6b3
commit fdd9d5bb40

View File

@@ -61,9 +61,6 @@ impl TrieInput {
}
/// Extend the trie input with the provided blocks, from oldest to newest.
///
/// For blocks with missing trie updates, the trie input will be extended with prefix sets
/// constructed from the state of this block and the state itself, **without** trie updates.
pub fn extend_with_blocks<'a>(
&mut self,
blocks: impl IntoIterator<Item = (&'a HashedPostState, &'a TrieUpdates)>,