This commit is contained in:
Richard Ramos 2021-11-16 09:48:01 -04:00
parent 4a37a4cb8a
commit bd86eb6a92
No known key found for this signature in database
GPG Key ID: 80D4B01265FDFE8F

View File

@ -123,17 +123,6 @@ func New(ctx context.Context, opts ...WakuNodeOption) (*WakuNode, error) {
log.Info("Listening on ", addr)
}
go func() {
ticker := time.NewTicker(10 * time.Second)
select {
case <-ticker.C:
for _, addr := range w.ListenAddresses() {
log.Info("Listening on ", addr)
}
}
}()
return w, nil
}