Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.

Commit a89646f

Browse files
authored
chore(engine): rename block validation task (paradigmxyz#17964)
1 parent 1ed7450 commit a89646f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/engine/tree/src/tree/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ where
389389
evm_config,
390390
);
391391
let incoming = task.incoming_tx.clone();
392-
std::thread::Builder::new().name("Tree Task".to_string()).spawn(|| task.run()).unwrap();
392+
std::thread::Builder::new().name("Engine Task".to_string()).spawn(|| task.run()).unwrap();
393393
(incoming, outgoing)
394394
}
395395

crates/engine/tree/src/tree/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ async fn test_tree_persist_blocks() {
381381
.collect();
382382
let test_harness = TestHarness::new(chain_spec).with_blocks(blocks.clone());
383383
std::thread::Builder::new()
384-
.name("Tree Task".to_string())
384+
.name("Engine Task".to_string())
385385
.spawn(|| test_harness.tree.run())
386386
.unwrap();
387387

0 commit comments

Comments
 (0)