Skip to content

Commit

Permalink
fix critics
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel committed Sep 3, 2024
1 parent 645bf44 commit 65e9d23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/operator/instances_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ func (s *Switch) HandleInstanceOperation(reqID [24]byte, transportMsg *wire.Tran
return nil, fmt.Errorf("%s: failed to unmarshal message: %s", operationType, err.Error())
}
instanceMessage = reshare
allOps = append(reshare.SignedReshare.Reshare.OldOperators, reshare.SignedReshare.Reshare.NewOperators...)
allOps = append(allOps, reshare.SignedReshare.Reshare.OldOperators...)
allOps = append(allOps, reshare.SignedReshare.Reshare.NewOperators...)

s.Logger.Info("Incoming reshare request fields",
zap.Any("Old operator IDs", utils.GetOpIDs(reshare.SignedReshare.Reshare.OldOperators)),
Expand Down

0 comments on commit 65e9d23

Please sign in to comment.