mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 18:04:18 +00:00
Fix rebase conflict
This commit is contained in:
@@ -20,7 +20,7 @@ pub enum Error {
|
||||
RlpError(String),
|
||||
BlockNotFound(Hash256),
|
||||
/// The blobs sidecar mapping to this block root is older than the data availability boundary.
|
||||
BlobsTooOld(Hash256),
|
||||
BlobsTooOld(Hash256, Slot),
|
||||
NoContinuationData,
|
||||
SplitPointModified(Slot, Slot),
|
||||
ConfigError(StoreConfigError),
|
||||
|
||||
@@ -1705,7 +1705,7 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
|
||||
let data_availability_breakpoint: Hash256;
|
||||
|
||||
match blob_info.data_availability_breakpoint {
|
||||
match blob_info.data_availability_boundary {
|
||||
Some(breakpoint) => {
|
||||
if breakpoint == blob_info.oldest_blob_parent {
|
||||
return Ok(());
|
||||
|
||||
@@ -125,7 +125,7 @@ pub struct BlobInfo {
|
||||
/// The latest epoch that blobs were pruned.
|
||||
pub last_pruned_epoch: Epoch,
|
||||
/// The block root of the next blobs to prune from.
|
||||
pub data_availability_breakpoint: Option<Hash256>,
|
||||
pub data_availability_boundary: Option<Hash256>,
|
||||
/// The block root of the next blob that needs to be added to fill in the history.
|
||||
pub oldest_blob_parent: Hash256,
|
||||
/// The slot before which blobs are available.
|
||||
|
||||
Reference in New Issue
Block a user