diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index c6cf5cc94..247a370bf 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -392,7 +392,7 @@ impl Command { // Run consensus engine to completion let (tx, rx) = oneshot::channel(); info!(target: "reth::cli", "Starting consensus engine"); - ctx.task_executor.spawn_critical("consensus engine", async move { + ctx.task_executor.spawn_critical_blocking("consensus engine", async move { let res = beacon_consensus_engine.await; let _ = tx.send(res); });