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