diff --git a/web3-proxy/src/connections.rs b/web3-proxy/src/connections.rs index 39b519c2..a1d200c6 100644 --- a/web3-proxy/src/connections.rs +++ b/web3-proxy/src/connections.rs @@ -423,8 +423,6 @@ impl Web3Connections { pub async fn get_block(&self, num: U64) -> anyhow::Result>> { if let Some(block) = self.chain.get_block(&num) { - // for now, just return the first seen block. we actually want the winning block! - // TODO: don't clone return Ok(block); }