We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7487589 commit a6651b8Copy full SHA for a6651b8
components/ordhook-core/src/core/pipeline/mod.rs
@@ -169,7 +169,6 @@ pub async fn download_and_pipeline_blocks(
169
while let Ok(message) = block_compressed_rx.try_recv() {
170
match message {
171
Some((block_height, block, compacted_block)) => {
172
- blocks_processed += 1;
173
new_blocks.push((block_height, block, compacted_block));
174
// Max batch size: 10_000 blocks
175
if new_blocks.len() >= 10_000 {
@@ -216,6 +215,7 @@ pub async fn download_and_pipeline_blocks(
216
215
vec![],
217
));
218
}
+ blocks_processed += 1;
219
continue;
220
221
@@ -235,6 +235,7 @@ pub async fn download_and_pipeline_blocks(
235
blocks,
236
237
238
239
240
241
()
0 commit comments