Skip to content

Commit 13306e2

Browse files
committed
fix(zkproof-worker): remove request_id from verify_task span attrs
1 parent 06593eb commit 13306e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coprocessor/fhevm-engine/zkproof-worker/src/verifier.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,14 +297,14 @@ async fn execute_verify_proof_routine(
297297

298298
let verify_span = tracing::info_span!(
299299
"verify_task",
300-
request_id,
301300
transaction_hash = transaction_id
302301
.as_deref()
303302
.map(fhevm_engine_common::utils::to_hex)
304303
.unwrap_or_default(),
305304
);
306305
let res = tokio::task::spawn_blocking(move || {
307306
let _guard = verify_span.enter();
307+
info!(request_id, "processing verify task");
308308
let aux_data = auxiliary::ZkData {
309309
contract_address,
310310
user_address,

0 commit comments

Comments
 (0)