Skip to content

Commit

Permalink
Fix round control transfer to same check
Browse files Browse the repository at this point in the history
Co-authored-by: Ganesh Vanahalli <[email protected]>
  • Loading branch information
Tristan-Wilson and ganeshvanahalli authored Dec 12, 2024
1 parent cb71840 commit 5e408da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execution/gethexec/express_lane_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ func (es *expressLaneService) Start(ctxIn context.Context) {
"previous", setExpressLaneIterator.Event.PreviousExpressLaneController,
"new", setExpressLaneIterator.Event.NewExpressLaneController)
}
if roundInfo.controller != prevController {
if roundInfo.controller == setExpressLaneIterator.Event.NewExpressLaneController {
log.Warn("SetExpressLaneController: Previous and New ExpressLaneControllers are the same, not transferring control.",
"round", round,
"previous", setExpressLaneIterator.Event.PreviousExpressLaneController,
Expand Down

0 comments on commit 5e408da

Please sign in to comment.