diff --git a/crates/core/component/stake/src/uptime.rs b/crates/core/component/stake/src/uptime.rs index 7795333139..2326f07953 100644 --- a/crates/core/component/stake/src/uptime.rs +++ b/crates/core/component/stake/src/uptime.rs @@ -80,7 +80,7 @@ impl Uptime { /// Enumerates the missed blocks over the window in terms of absolute block height. pub fn missed_blocks(&self) -> impl Iterator + DoubleEndedIterator + '_ { - // The height of the next block to be recorded (not yet recorded): + // The height of the latest block that's been recorded: let current_height = self.as_of_block_height; // The length of the window of blocks being recorded: let window_len = self.signatures.len();