mirror of
https://github.com/status-im/status-go.git
synced 2025-02-20 10:48:36 +00:00
fix: start idService and add wg.Done to fnApply
This commit is contained in:
parent
89385cfcaf
commit
573a97791e
@ -426,6 +426,7 @@ func (w *Waku) dnsDiscover(ctx context.Context, enrtreeAddress string, apply fnA
|
|||||||
|
|
||||||
func (w *Waku) addWakuV2Peers(ctx context.Context, cfg *Config) error {
|
func (w *Waku) addWakuV2Peers(ctx context.Context, cfg *Config) error {
|
||||||
fnApply := func(d dnsdisc.DiscoveredNode, wg *sync.WaitGroup) {
|
fnApply := func(d dnsdisc.DiscoveredNode, wg *sync.WaitGroup) {
|
||||||
|
defer wg.Done()
|
||||||
if len(d.PeerInfo.Addrs) != 0 {
|
if len(d.PeerInfo.Addrs) != 0 {
|
||||||
go w.identifyAndConnect(ctx, w.settings.LightClient, d.PeerInfo)
|
go w.identifyAndConnect(ctx, w.settings.LightClient, d.PeerInfo)
|
||||||
}
|
}
|
||||||
@ -1159,6 +1160,7 @@ func (w *Waku) Start() error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
idService.Start()
|
||||||
|
|
||||||
w.identifyService = idService
|
w.identifyService = idService
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user