global: final snapshot and fixes before release

This commit is contained in:
nym21
2026-03-22 23:16:52 +01:00
parent 514fdc40ee
commit 514b0513de
34 changed files with 323 additions and 210 deletions

View File

@@ -63,7 +63,8 @@ impl Query {
/// Current computed height (series)
pub fn computed_height(&self) -> Height {
Height::from(self.computer().distribution.supply_state.len())
let len = self.computer().distribution.supply_state.len();
Height::from(len.saturating_sub(1))
}
/// Minimum of indexed and computed heights