Skip to content

Commit 67c7fa1

Browse files
authored
fix: exit node if a blob is unretrievable (#33)
1 parent d50fc3f commit 67c7fa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/block-processor/src/v1/processor.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ where
224224
Some(submitted) => {
225225
self.blob_cacher
226226
.signet_block(block_extracts.host_block.number(), slot, submitted)
227-
.await
228-
.map(|block| block.into_parts().1)
229-
.unwrap_or_default()
227+
.await?
228+
.into_parts()
229+
.1
230230
.into_iter()
231231
.filter(|tx| !tx.is_eip4844()) // redundant, but let's be sure
232232
.map(|tx| tx.into())

0 commit comments

Comments
 (0)