p2p: use package slices to sort in PeersInfo (#29957)

pull/29964/head
Gealber Morales 3 months ago committed by GitHub
parent 349fcdd22d
commit 8bda642963
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      p2p/server.go

@ -19,6 +19,7 @@ package p2p
import ( import (
"bytes" "bytes"
"cmp"
"crypto/ecdsa" "crypto/ecdsa"
"encoding/hex" "encoding/hex"
"errors" "errors"
@ -1140,12 +1141,9 @@ func (srv *Server) PeersInfo() []*PeerInfo {
} }
} }
// Sort the result array alphabetically by node identifier // Sort the result array alphabetically by node identifier
for i := 0; i < len(infos); i++ { slices.SortFunc(infos, func(a, b *PeerInfo) int {
for j := i + 1; j < len(infos); j++ { return cmp.Compare(a.ID, b.ID)
if infos[i].ID > infos[j].ID { })
infos[i], infos[j] = infos[j], infos[i]
}
}
}
return infos return infos
} }

Loading…
Cancel
Save