@@ -382,31 +382,31 @@ func NewManager(
382382 headerBroadcaster : headerBroadcaster ,
383383 dataBroadcaster : dataBroadcaster ,
384384 // channels are buffered to avoid blocking on input/output operations, buffer sizes are arbitrary
385- headerInCh : make (chan NewHeaderEvent , eventInChLength ),
386- dataInCh : make (chan NewDataEvent , eventInChLength ),
387- headerStoreCh : make (chan struct {}, 1 ),
388- dataStoreCh : make (chan struct {}, 1 ),
389- headerStore : headerStore ,
390- dataStore : dataStore ,
391- lastStateMtx : new (sync.RWMutex ),
392- lastBatchData : lastBatchData ,
393- headerCache : cache .NewCache [types.SignedHeader ](),
394- dataCache : cache .NewCache [types.Data ](),
395- retrieveCh : make (chan struct {}, 1 ),
396- daIncluderCh : make (chan struct {}, 1 ),
397- logger : logger ,
398- txsAvailable : false ,
399- pendingHeaders : pendingHeaders ,
400- pendingData : pendingData ,
401- metrics : seqMetrics ,
402- sequencer : sequencer ,
403- exec : exec ,
404- da : da ,
405- gasPrice : gasPrice ,
406- gasMultiplier : gasMultiplier ,
407- txNotifyCh : make (chan struct {}, 1 ), // Non-blocking channel
408- signaturePayloadProvider : managerOpts .SignaturePayloadProvider ,
409- validatorHasherProvider : managerOpts .ValidatorHasherProvider ,
385+ headerInCh : make (chan NewHeaderEvent , eventInChLength ),
386+ dataInCh : make (chan NewDataEvent , eventInChLength ),
387+ headerStoreCh : make (chan struct {}, 1 ),
388+ dataStoreCh : make (chan struct {}, 1 ),
389+ headerStore : headerStore ,
390+ dataStore : dataStore ,
391+ lastStateMtx : new (sync.RWMutex ),
392+ lastBatchData : lastBatchData ,
393+ headerCache : cache .NewCache [types.SignedHeader ](),
394+ dataCache : cache .NewCache [types.Data ](),
395+ retrieveCh : make (chan struct {}, 1 ),
396+ daIncluderCh : make (chan struct {}, 1 ),
397+ logger : logger ,
398+ txsAvailable : false ,
399+ pendingHeaders : pendingHeaders ,
400+ pendingData : pendingData ,
401+ metrics : seqMetrics ,
402+ sequencer : sequencer ,
403+ exec : exec ,
404+ da : da ,
405+ gasPrice : gasPrice ,
406+ gasMultiplier : gasMultiplier ,
407+ txNotifyCh : make (chan struct {}, 1 ), // Non-blocking channel
408+ signaturePayloadProvider : managerOpts .SignaturePayloadProvider ,
409+ validatorHasherProvider : managerOpts .ValidatorHasherProvider ,
410410 namespaceMigrationCompleted : & atomic.Bool {},
411411 }
412412
0 commit comments