mirror of
https://github.com/sigp/lighthouse.git
synced 2026-06-30 19:34:37 +00:00
merge conflicts
This commit is contained in:
@@ -264,9 +264,15 @@ pub(crate) fn create_whitelist_filter(
|
|||||||
add(SyncCommitteeMessage(SyncSubnetId::new(id)));
|
add(SyncCommitteeMessage(SyncSubnetId::new(id)));
|
||||||
}
|
}
|
||||||
let blob_subnet_count = if spec.electra_fork_epoch.is_some() {
|
let blob_subnet_count = if spec.electra_fork_epoch.is_some() {
|
||||||
|
<<<<<<< HEAD
|
||||||
spec.blob_sidecar_subnet_count
|
spec.blob_sidecar_subnet_count
|
||||||
} else {
|
} else {
|
||||||
spec.blob_sidecar_subnet_count_electra
|
spec.blob_sidecar_subnet_count_electra
|
||||||
|
=======
|
||||||
|
spec.blob_sidecar_subnet_count_electra
|
||||||
|
} else {
|
||||||
|
spec.blob_sidecar_subnet_count
|
||||||
|
>>>>>>> 21978a8da4ceb5af202b5c75a6a240a7f5469f53
|
||||||
};
|
};
|
||||||
for id in 0..blob_subnet_count {
|
for id in 0..blob_subnet_count {
|
||||||
add(BlobSidecar(id));
|
add(BlobSidecar(id));
|
||||||
|
|||||||
@@ -59,7 +59,11 @@ pub fn fork_core_topics<E: EthSpec>(fork_name: &ForkName, spec: &ChainSpec) -> V
|
|||||||
ForkName::Electra => {
|
ForkName::Electra => {
|
||||||
// All of electra blob topics are core topics
|
// All of electra blob topics are core topics
|
||||||
let mut electra_blob_topics = Vec::new();
|
let mut electra_blob_topics = Vec::new();
|
||||||
|
<<<<<<< HEAD
|
||||||
for i in 0..spec.blob_sidecar_subnet_count {
|
for i in 0..spec.blob_sidecar_subnet_count {
|
||||||
|
=======
|
||||||
|
for i in 0..spec.blob_sidecar_subnet_count_electra {
|
||||||
|
>>>>>>> 21978a8da4ceb5af202b5c75a6a240a7f5469f53
|
||||||
electra_blob_topics.push(GossipKind::BlobSidecar(i));
|
electra_blob_topics.push(GossipKind::BlobSidecar(i));
|
||||||
}
|
}
|
||||||
electra_blob_topics
|
electra_blob_topics
|
||||||
|
|||||||
Reference in New Issue
Block a user