@@ -4,7 +4,7 @@ use alloy::{
4
4
use anyhow:: { anyhow, Context as AnyhowContext , Result } ;
5
5
6
6
use crate :: clients:: beacon:: types:: BlockHeader ;
7
- use tracing:: { debug, info} ;
7
+ use tracing:: { debug, info, Instrument } ;
8
8
9
9
use crate :: {
10
10
clients:: {
@@ -287,6 +287,18 @@ impl SlotsProcessor<ReqwestTransport> {
287
287
let canonical_block_path =
288
288
canonical_block_path. into_iter ( ) . rev ( ) . collect :: < Vec < _ > > ( ) ;
289
289
290
+ let forwarded_blocks = canonical_block_path
291
+ . iter ( )
292
+ . map ( |block| block. execution_block_hash )
293
+ . collect :: < Vec < _ > > ( ) ;
294
+
295
+ self . context
296
+ . blobscan_client ( )
297
+ . handle_reorg ( rewinded_blocks. clone ( ) , forwarded_blocks. clone ( ) )
298
+ . await ?;
299
+
300
+ info ! ( rewinded_blocks = ?rewinded_blocks, forwarded_blocks = ?forwarded_blocks, "Reorg handled!" ) ;
301
+
290
302
let canonical_block_headers: Vec < BlockHeader > = canonical_block_path
291
303
. iter ( )
292
304
. map ( |block| block. into ( ) )
@@ -296,24 +308,18 @@ impl SlotsProcessor<ReqwestTransport> {
296
308
// they were skipped and must be processed.
297
309
for block in canonical_block_headers. iter ( ) {
298
310
if block. slot != new_head_header. slot {
311
+ let reorg_span = tracing:: info_span!(
312
+ parent: & tracing:: Span :: current( ) ,
313
+ "forwarded_block" ,
314
+ ) ;
315
+
299
316
self . process_block ( block)
317
+ . instrument ( reorg_span)
300
318
. await
301
319
. with_context ( || format ! ( "Failed to sync forwarded block" ) ) ?;
302
320
}
303
321
}
304
322
305
- let forwarded_blocks = canonical_block_path
306
- . iter ( )
307
- . map ( |block| block. execution_block_hash )
308
- . collect :: < Vec < _ > > ( ) ;
309
-
310
- self . context
311
- . blobscan_client ( )
312
- . handle_reorg ( rewinded_blocks. clone ( ) , forwarded_blocks. clone ( ) )
313
- . await ?;
314
-
315
- info ! ( rewinded_blocks = ?rewinded_blocks, forwarded_blocks = ?forwarded_blocks, "Reorg handled!" ) ;
316
-
317
323
return Ok ( ( ) ) ;
318
324
}
319
325
0 commit comments