diff --git a/crates/storage/provider/src/providers/chain_info.rs b/crates/storage/provider/src/providers/chain_info.rs index b15db2af4d..2532ad866d 100644 --- a/crates/storage/provider/src/providers/chain_info.rs +++ b/crates/storage/provider/src/providers/chain_info.rs @@ -56,19 +56,16 @@ impl ChainInfoTracker { } /// Returns the canonical head of the chain. - #[allow(unused)] pub(crate) fn get_canonical_head(&self) -> SealedHeader { self.inner.canonical_head.read().clone() } /// Returns the safe header of the chain. - #[allow(unused)] pub(crate) fn get_safe_header(&self) -> Option { self.inner.safe_block.read().clone() } /// Returns the finalized header of the chain. - #[allow(unused)] pub(crate) fn get_finalized_header(&self) -> Option { self.inner.finalized_block.read().clone() }