Update crates/node-interaction/src/blocking_executor.rs

Co-authored-by: xermicus <cyrill@parity.io>
This commit is contained in:
Omar
2025-07-15 13:23:56 +03:00
committed by GitHub
parent e5a751f507
commit fde303f549
@@ -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) => {