diff --git a/crates/chain/src/local_chain.rs b/crates/chain/src/local_chain.rs index cd1b1de4..100a9662 100644 --- a/crates/chain/src/local_chain.rs +++ b/crates/chain/src/local_chain.rs @@ -246,17 +246,6 @@ pub struct LocalChain { tip: CheckPoint, } -// TODO: Figure out whether we can get rid of this -impl From for BTreeMap { - fn from(value: LocalChain) -> Self { - value - .tip - .iter() - .map(|cp| (cp.height(), cp.hash())) - .collect() - } -} - impl ChainOracle for LocalChain { type Error = Infallible;