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:22:45 +03:00
committed by GitHub
parent 6960298438
commit a43d94ea7d
@@ -56,8 +56,6 @@ impl BlockingExecutor {
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel::<TaskMessage>();
// 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()