diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index 6465284..939c156 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -69,7 +69,6 @@ impl BlockingExecutor { response_tx: response_channel, }) = rx.recv().await { - // Spawn off each job so that the receive loop is not blocked. tracing::trace!("Received a new future to execute"); tokio::spawn(async move { let task = AssertUnwindSafe(task).catch_unwind();