pub trait BlockDb: Send + Sync {
    fn block_height(&self) -> Result<BlockHeight>;
    fn seal_block(
        &mut self,
        block_id: BlockId,
        consensus: FuelBlockConsensus
    ) -> Result<()>; }

Required Methods§

Implementors§