diff --git a/crates/storage/provider/src/providers/mod.rs b/crates/storage/provider/src/providers/mod.rs index e6af92754b..92d4088b45 100644 --- a/crates/storage/provider/src/providers/mod.rs +++ b/crates/storage/provider/src/providers/mod.rs @@ -116,11 +116,13 @@ where Tree: BlockchainTreeViewer + Send + Sync, { fn safe_block_num(&self) -> Result> { - todo!() + // TODO: implement with canon chain tracker + Ok(None) } fn finalized_block_num(&self) -> Result> { - todo!() + // TODO: implement with canon chain tracker + Ok(None) } fn pending_block_num_hash(&self) -> Result> {