We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50fc3f commit dae6ca6Copy full SHA for dae6ca6
Cargo.toml
@@ -3,7 +3,7 @@ members = ["crates/*"]
3
resolver = "2"
4
5
[workspace.package]
6
-version = "0.10.2"
+version = "0.10.3"
7
edition = "2024"
8
rust-version = "1.88"
9
authors = ["init4"]
crates/block-processor/src/v1/processor.rs
@@ -224,9 +224,9 @@ where
224
Some(submitted) => {
225
self.blob_cacher
226
.signet_block(block_extracts.host_block.number(), slot, submitted)
227
- .await
228
- .map(|block| block.into_parts().1)
229
- .unwrap_or_default()
+ .await?
+ .into_parts()
+ .1
230
.into_iter()
231
.filter(|tx| !tx.is_eip4844()) // redundant, but let's be sure
232
.map(|tx| tx.into())
0 commit comments