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