From bdcc56bbf667d562da2715f232a2e70da36250c6 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 15 Aug 2023 16:20:36 +0200 Subject: [PATCH] chore: rm some unused (#4208) --- crates/storage/provider/src/providers/chain_info.rs | 3 --- 1 file changed, 3 deletions(-) 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() }