pub trait HeaderProvider {
    fn get_header(&self, hash: &Byte32) -> Option<HeaderView>;

    fn timestamp_and_parent(
        &self,
        block_hash: &Byte32
    ) -> (u64, BlockNumber, Byte32) { ... } fn block_median_time(
        &self,
        block_hash: &Byte32,
        median_block_count: usize
    ) -> u64 { ... } }
Expand description

Trait for header storage

Required Methods

Get the header of the given block hash

Provided Methods

Get timestamp and block_number of the corresponding block_hash, and hash of parent block

Get past block median time, including the timestamp of the given one

Implementations on Foreign Types

Implementors