mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore(engine): rename block validation task (#17964)
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user