Skip to content

Commit dae6ca6

Browse files
committed
fix: exit node if a blob is unretrievable (#33)
1 parent d50fc3f commit dae6ca6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.10.2"
6+
version = "0.10.3"
77
edition = "2024"
88
rust-version = "1.88"
99
authors = ["init4"]

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)