From 80a29ceac0337791016bdaea4cf1c8b6dce152d6 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 22 Jul 2022 05:13:01 +0000 Subject: [PATCH] stale comment --- web3-proxy/src/connections.rs | 2 -- 1 file changed, 2 deletions(-) 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); }