Skip to content

Commit

Permalink
Don't force delayed sequencing when coordinator is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasmaPower committed Jan 17, 2024
1 parent 4dac708 commit 8833cc9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions arbnode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -796,12 +796,6 @@ func (n *Node) Start(ctx context.Context) error {
if n.SeqCoordinator != nil {
n.SeqCoordinator.Start(ctx)
} else {
if n.DelayedSequencer != nil {
err := n.DelayedSequencer.ForceSequenceDelayed(ctx)
if err != nil {
return fmt.Errorf("error initially sequencing delayed instructions: %w", err)
}
}
n.Execution.Activate()
}
if n.MaintenanceRunner != nil {
Expand Down

0 comments on commit 8833cc9

Please sign in to comment.