mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-28 02:03:32 +00:00
Gloas payload envelope processing (#8806)
Co-Authored-By: Eitan Seri- Levi <eserilev@gmail.com> Co-Authored-By: Eitan Seri-Levi <eserilev@ucsc.edu> Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com> Co-Authored-By: Michael Sproul <michael@sigmaprime.io> Co-Authored-By: Michael Sproul <michaelsproul@users.noreply.github.com>
This commit is contained in:
@@ -165,13 +165,8 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
}
|
||||
|
||||
// Store the blobs or data columns too
|
||||
if let Some(op) = self
|
||||
.get_blobs_or_columns_store_op(block_root, block.slot(), block_data)
|
||||
.map_err(|e| {
|
||||
HistoricalBlockError::StoreError(StoreError::DBError {
|
||||
message: format!("get_blobs_or_columns_store_op error {e:?}"),
|
||||
})
|
||||
})?
|
||||
if let Some(op) =
|
||||
self.get_blobs_or_columns_store_op(block_root, block.slot(), block_data)
|
||||
{
|
||||
blob_batch.extend(self.store.convert_to_kv_batch(vec![op])?);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user