Skip to content

Conversation

@qu0b
Copy link
Member

@qu0b qu0b commented Jan 2, 2026

No description provided.

@qu0b qu0b requested a review from samcm as a code owner January 2, 2026 11:01
Comment on lines +355 to +362
// Check if Fulu or Gloas is active - if so, don't fetch blobs as they're no longer in blocks
fuluFork, fuluErr := sp.ForkEpochs.GetByName("fulu")
if fuluErr == nil && fuluFork != nil && fuluFork.Active(epoch) {
d.log.WithField("epoch", epoch).Debug("Skipping blob sidecar download - Fulu fork active")
gloasFork, gloasErr := sp.ForkEpochs.GetByName("gloas")
fuluActive := fuluErr == nil && fuluFork != nil && fuluFork.Active(epoch)
gloasActive := gloasErr == nil && gloasFork != nil && gloasFork.Active(epoch)

if fuluActive || gloasActive {
d.log.WithField("epoch", epoch).Debug("Skipping blob sidecar download - Fulu/Gloas fork active")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change should not be necessary.
fulu is always active if gloas is active, so checking for fulu only is enough here,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants