mirror of https://github.com/status-im/js-waku.git
parent
30e063a8eb
commit
d875994908
|
@ -276,7 +276,7 @@ export class RelayHeartbeat extends Heartbeat {
|
||||||
const peersList = Array.from(peers).sort(
|
const peersList = Array.from(peers).sort(
|
||||||
(a, b) => getScore(a) - getScore(b)
|
(a, b) => getScore(a) - getScore(b)
|
||||||
);
|
);
|
||||||
const medianIndex = peers.size / 2;
|
const medianIndex = Math.floor(peers.size / 2);
|
||||||
const medianScore = getScore(peersList[medianIndex]);
|
const medianScore = getScore(peersList[medianIndex]);
|
||||||
|
|
||||||
// if the median score is below the threshold, select a better peer (if any) and GRAFT
|
// if the median score is below the threshold, select a better peer (if any) and GRAFT
|
||||||
|
|
Loading…
Reference in New Issue