chore(engine): rename finish span to BlockExecutor::finish (#22356)

Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-18 23:29:18 -08:00
committed by GitHub
parent 7f4f3f1eb9
commit e0eb306b2b

View File

@@ -829,7 +829,7 @@ where
// Finish execution and get the result
let post_exec_start = Instant::now();
let (_evm, result) = debug_span!(target: "engine::tree", "finish")
let (_evm, result) = debug_span!(target: "engine::tree", "BlockExecutor::finish")
.in_scope(|| executor.finish())
.map(|(evm, result)| (evm.into_db(), result))?;
self.metrics.record_post_execution(post_exec_start.elapsed());