Skip to content

Commit

Permalink
Merge pull request #52 from Layr-Labs/epociask--fix-ODA-01
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask authored Dec 6, 2024
2 parents d40d858 + bc6ec97 commit bba6f61
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions arbnode/batch_poster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1513,6 +1513,13 @@ func (b *BatchPoster) maybePostSequencerBatch(ctx context.Context) (bool, error)
}
}

// blob is successfully dipsersed to EigenDA w/ 4844 as a supported failover
// batch posting destination. Disable 4844 so encodeAddBatch will use
// EigenDA's blob info.
if b.building.useEigenDA && eigenDADispersed && b.building.use4844 {
b.building.use4844 = false
}

if b.dapWriter != nil && !eigenDADispersed {
if !b.redisLock.AttemptLock(ctx) {
return false, errAttemptLockFailed
Expand Down

0 comments on commit bba6f61

Please sign in to comment.