From 5170f5f8207d3af5307c6bd9b0affb2512c9e381 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Tue, 24 Oct 2023 21:55:11 -0700 Subject: [PATCH] add todo comment --- web3_proxy/src/rpcs/blockchain.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/web3_proxy/src/rpcs/blockchain.rs b/web3_proxy/src/rpcs/blockchain.rs index ea4d56db..a7c2c81f 100644 --- a/web3_proxy/src/rpcs/blockchain.rs +++ b/web3_proxy/src/rpcs/blockchain.rs @@ -194,6 +194,7 @@ impl Web3Rpcs { return Ok(()); } + // TODO: should this be spawned and then we just hold onto the handle here? let mut consensus_finder = ConsensusFinder::new(Some(self.max_head_block_age), Some(self.max_head_block_lag));