fix(tree): correct block buffer eviction policy comment (#20512)

This commit is contained in:
Gigi
2025-12-20 10:44:51 +01:00
committed by GitHub
parent f4d3a9701f
commit 178558c6d7

View File

@@ -14,7 +14,7 @@ use std::collections::{BTreeMap, HashMap, HashSet, VecDeque};
/// * [`BlockBuffer::remove_old_blocks`] to remove old blocks that precede the finalized number. /// * [`BlockBuffer::remove_old_blocks`] to remove old blocks that precede the finalized number.
/// ///
/// Note: Buffer is limited by number of blocks that it can contain and eviction of the block /// Note: Buffer is limited by number of blocks that it can contain and eviction of the block
/// is done by last recently used block. /// is done in FIFO order (oldest inserted block is evicted first).
#[derive(Debug)] #[derive(Debug)]
pub struct BlockBuffer<B: Block> { pub struct BlockBuffer<B: Block> {
/// All blocks in the buffer stored by their block hash. /// All blocks in the buffer stored by their block hash.