Trait ckb_traits::HeaderProvider[][src]

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

TODO(doc): @quake

Required methods

TODO(doc): @quake

Provided methods

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

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

Implementations on Foreign Types

Implementors