Skip to content

Commit 7e0d76c

Browse files
committed
Fix incorrect logging.
1 parent f976de8 commit 7e0d76c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/beacon_chain/src/data_availability_checker/overflow_lru_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ impl<E: EthSpec> PendingComponents<E> {
331331
format!(
332332
"block {} blobs {}/{}",
333333
block_count,
334-
self.verified_blobs.len(),
334+
self.verified_blobs.iter().flatten().count();
335335
num_expected_blobs
336336
)
337337
}

0 commit comments

Comments
 (0)