From a43d94ea7d4aacd496f5154272ac6ea9ae546f50 Mon Sep 17 00:00:00 2001 From: Omar Date: Tue, 15 Jul 2025 13:22:45 +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 1b87204..6465284 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -56,8 +56,6 @@ impl BlockingExecutor { 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 - // for new tasks coming in and executing them as they come in. thread::spawn(move || { let runtime = Builder::new_current_thread() .enable_all()