File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
beacon_node/beacon_chain/src Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ use ssz_types::FixedVector;
2222use state_processing:: per_block_processing:: deneb:: kzg_commitment_to_versioned_hash;
2323use std:: collections:: HashSet ;
2424use std:: sync:: Arc ;
25- use tracing:: debug;
25+ use tracing:: { debug, instrument } ;
2626use types:: blob_sidecar:: { BlobSidecarError , FixedBlobSidecarList } ;
2727use types:: data_column_sidecar:: DataColumnSidecarError ;
2828use types:: {
@@ -56,6 +56,15 @@ pub enum FetchEngineBlobError {
5656
5757/// Fetches blobs from the EL mempool and processes them. It also broadcasts unseen blobs or
5858/// data columns (PeerDAS onwards) to the network, using the supplied `publish_fn`.
59+ #[ instrument(
60+ level = "info" ,
61+ name = "fetch_engine_blobs" ,
62+ fields(
63+ service = "fetch_engine_blobs" ,
64+ block_root = ?block_root
65+ ) ,
66+ skip_all
67+ ) ]
5968pub async fn fetch_and_process_engine_blobs < T : BeaconChainTypes > (
6069 chain : Arc < BeaconChain < T > > ,
6170 block_root : Hash256 ,
You can’t perform that action at this time.
0 commit comments