From 268437b4d96a21f79f95b03e1f08f46e6f0b9a06 Mon Sep 17 00:00:00 2001 From: Omar Date: Tue, 15 Jul 2025 13:22:03 +0300 Subject: [PATCH] Update crates/node-interaction/src/blocking_executor.rs Co-authored-by: xermicus --- crates/node-interaction/src/blocking_executor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index 53123b5..3af7a4a 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -63,7 +63,6 @@ impl BlockingExecutor { // 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 || { - // Creating the tokio runtime on this current thread. let runtime = Builder::new_current_thread() .enable_all() .build()