Skip to content

Commit

Permalink
fix: blob_sidecar decode error
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 authored Nov 14, 2024
1 parent ef74260 commit 6656417
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/primitives-traits/src/blob_sidecar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,7 @@ impl Decodable for BlobSidecar {
let _rlp_head_tx_sidecar = alloy_rlp::Header::decode(buf)?;

let this = Self {
blob_transaction_sidecar: BlobTransactionSidecar {
blobs: Decodable::decode(buf)?,
commitments: Decodable::decode(buf)?,
proofs: Decodable::decode(buf)?,
},
blob_transaction_sidecar: Decodable::decode(buf)?,
block_number: Decodable::decode(buf)?,
block_hash: Decodable::decode(buf)?,
tx_index: Decodable::decode(buf)?,
Expand Down

0 comments on commit 6656417

Please sign in to comment.