Skip to content

Commit

Permalink
Fixes Node.Start nil reference
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoximenes committed Jan 3, 2025
1 parent 70a1743 commit 375bd8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbnode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ func (n *Node) Start(ctx context.Context) error {
}
if n.SeqCoordinator != nil {
n.SeqCoordinator.Start(ctx)
} else {
} else if n.ExecutionSequencer != nil {
n.ExecutionSequencer.Activate()
}
if n.MaintenanceRunner != nil {
Expand Down

0 comments on commit 375bd8d

Please sign in to comment.