From 7630d4bbfb2e852d2b7133056cf4c082562baff1 Mon Sep 17 00:00:00 2001 From: Prem Chaitanya Prathi Date: Mon, 14 Apr 2025 22:05:37 +0530 Subject: [PATCH] fix compile error after merge --- waku/waku_mix/protocol.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku/waku_mix/protocol.nim b/waku/waku_mix/protocol.nim index f083d6d3e..f9ff15bf5 100644 --- a/waku/waku_mix/protocol.nim +++ b/waku/waku_mix/protocol.nim @@ -61,7 +61,7 @@ proc appendPeerIdToMultiaddr*(multiaddr: MultiAddress, peerId: PeerId): MultiAdd proc populateMixNodePool*(mix: WakuMix) {.async.} = # populate only peers that i) are reachable ii) share cluster iii) support mix - let remotePeers = mix.peerManager.wakuPeerStore.getReachablePeers().filterIt( + let remotePeers = mix.peerManager.switch.peerStore.getReachablePeers().filterIt( mixPoolFilter(some(mix.clusterId), it) ) var mixNodes = initTable[PeerId, MixPubInfo]()