From 4ad33a9830c9fd94442a66c149669aaf8afa2c3a Mon Sep 17 00:00:00 2001 From: Peter Davies Date: Fri, 14 Apr 2023 16:25:22 +0100 Subject: [PATCH] fix: remove inaccurate warning about engine API being unsupported (#2248) --- bin/reth/src/node/mod.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index abc480435f..4a0be8041a 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -217,13 +217,7 @@ impl Command { debug!(target: "reth::cli", %tip, "Tip manually set"); Some(tip_rx) } - None => { - let warn_msg = "No tip specified. \ - reth cannot communicate with consensus clients, \ - so a tip must manually be provided for the online stages with --debug.tip ."; - warn!(target: "reth::cli", warn_msg); - None - } + None => None, }; // configure blockchain tree