From 6960298438a2c133e85b367781afb45d3d46d34f Mon Sep 17 00:00:00 2001 From: Omar Date: Tue, 15 Jul 2025 13:22:36 +0300 Subject: [PATCH] Update crates/node-interaction/src/blocking_executor.rs Co-authored-by: xermicus --- crates/node-interaction/src/blocking_executor.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index ca8994b..1b87204 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -54,8 +54,6 @@ impl BlockingExecutor { static STATE: Lazy = Lazy::new(|| { tracing::trace!("Initializing the BlockingExecutor state"); - // Creating a multiple-producer-single-consumer channel which allows all of the other - // threads to communicate with this one async runtime thread. let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel::(); // We spawn a new thread which will house the async runtime and will always be listening