diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index 1150081..b354c45 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -100,7 +100,6 @@ impl BlockingExecutor { anyhow::bail!("Failed to send the task to the blocking executor: {error:?}") } - // Await for the result of the execution to come back over the channel. let result = match response_rx.blocking_recv() { Ok(result) => result, Err(error) => {