Skip to content

Commit 2a953a8

Browse files
authored
fix: remove noisy storage proof spans (#19892)
1 parent cc7edeb commit 2a953a8

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

crates/trie/parallel/src/proof_task.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,11 +1365,6 @@ where
13651365
match ctx.missed_leaves_storage_roots.entry(hashed_address) {
13661366
dashmap::Entry::Occupied(occ) => *occ.get(),
13671367
dashmap::Entry::Vacant(vac) => {
1368-
let _guard = debug_span!(
1369-
target: "trie::proof_task",
1370-
"Waiting on missed leaf storage proof computation",
1371-
?hashed_address,
1372-
);
13731368
let root =
13741369
StorageProof::new_hashed(provider, provider, hashed_address)
13751370
.with_prefix_set_mut(Default::default())
@@ -1413,11 +1408,6 @@ where
14131408

14141409
// Consume remaining storage proof receivers for accounts not encountered during trie walk.
14151410
for (hashed_address, receiver) in storage_proof_receivers {
1416-
let _guard = debug_span!(
1417-
target: "trie::proof_task",
1418-
"Blocking on final storage proof",
1419-
?hashed_address,
1420-
);
14211411
if let Ok(proof_msg) = receiver.recv() {
14221412
// Extract storage proof from the result
14231413
if let Ok(ProofResult::StorageProof { proof, .. }) = proof_msg.result {

0 commit comments

Comments
 (0)