chore(engine): rename block validation task (#17964)

This commit is contained in:
Femi Bankole
2025-08-20 19:16:19 +01:00
committed by GitHub
parent 1ed7450d53
commit a89646faee
2 changed files with 2 additions and 2 deletions

View File

@@ -389,7 +389,7 @@ where
evm_config,
);
let incoming = task.incoming_tx.clone();
std::thread::Builder::new().name("Tree Task".to_string()).spawn(|| task.run()).unwrap();
std::thread::Builder::new().name("Engine Task".to_string()).spawn(|| task.run()).unwrap();
(incoming, outgoing)
}

View File

@@ -381,7 +381,7 @@ async fn test_tree_persist_blocks() {
.collect();
let test_harness = TestHarness::new(chain_spec).with_blocks(blocks.clone());
std::thread::Builder::new()
.name("Tree Task".to_string())
.name("Engine Task".to_string())
.spawn(|| test_harness.tree.run())
.unwrap();