1 parent c2f8e71 commit 8e73552Copy full SHA for 8e73552
1 file changed
block/internal/syncing/syncer.go
@@ -320,9 +320,8 @@ func (s *Syncer) fetchDAUntilCaughtUp() error {
320
321
if len(events) == 0 {
322
// This can happen if RetrieveFromDA returns no events and no error.
323
- // This is unexpected, but we should handle it to avoid busy-looping.
324
- s.logger.Warn().Uint64("da_height", daHeight).Msg("no events returned from DA, but no error either. Backing off.")
325
- return fmt.Errorf("no events returned from DA for height %d", daHeight)
+ s.logger.Debug().Uint64("da_height", daHeight).Msg("no events returned from DA, but no error either. Backing off.")
+ // return fmt.Errorf("no events returned from DA for height %d", daHeight)
326
}
327
328
// Process DA events
0 commit comments