File tree 1 file changed +2
-2
lines changed
components/ordhook-core/src/core/pipeline
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -209,13 +209,13 @@ pub async fn download_and_pipeline_blocks(
209
209
210
210
// Early "continue"
211
211
if inbox. is_empty ( ) {
212
+ blocks_processed += ooo_compacted_blocks. len ( ) as u64 ;
212
213
if let Some ( ref blocks_tx) = blocks_post_processor_commands_tx {
213
214
let _ = blocks_tx. send ( PostProcessorCommand :: ProcessBlocks (
214
215
ooo_compacted_blocks,
215
216
vec ! [ ] ,
216
217
) ) ;
217
218
}
218
- blocks_processed += 1 ;
219
219
continue ;
220
220
}
221
221
@@ -229,13 +229,13 @@ pub async fn download_and_pipeline_blocks(
229
229
}
230
230
231
231
if !blocks. is_empty ( ) {
232
+ blocks_processed += blocks. len ( ) as u64 ;
232
233
if let Some ( ref blocks_tx) = blocks_post_processor_commands_tx {
233
234
let _ = blocks_tx. send ( PostProcessorCommand :: ProcessBlocks (
234
235
compacted_blocks,
235
236
blocks,
236
237
) ) ;
237
238
}
238
- blocks_processed += 1 ;
239
239
}
240
240
}
241
241
( )
You can’t perform that action at this time.
0 commit comments