brk_query 0.3.0-beta.9

An interface to find and format data from BRK
Documentation
use brk_error::Result;
use brk_types::{DifficultyAdjustmentEntry, TimePeriod};
use vecdb::VecIndex;

use super::epochs::iter_difficulty_epochs;
use crate::Query;

impl Query {
    /// All difficulty adjustments (one entry per retarget) whose first block
    /// lies within `time_period`, in reverse chronological order (newest
    /// first). `None` walks every epoch from genesis. The window cutoff is
    /// wall-clock (via `start_height`) rather than block-count, so the
    /// returned set is "epochs whose first block lies within the period",
    /// not "the last N epochs".
    pub fn difficulty_adjustments(
        &self,
        time_period: Option<TimePeriod>,
    ) -> Result<Vec<DifficultyAdjustmentEntry>> {
        let end = self.height().to_usize();
        let start = match time_period {
            Some(tp) => self.start_height(tp)?.to_usize(),
            None => 0,
        };

        let mut entries = iter_difficulty_epochs(self.computer(), start, end)?;
        entries.reverse();
        Ok(entries)
    }
}