fix: remove unused vars

This commit is contained in:
Richard Ramos 2022-02-24 09:40:18 -04:00
parent d1931a6c69
commit cdc0c9c69d
No known key found for this signature in database
GPG Key ID: BD36D48BC9FFC88C

View File

@ -93,8 +93,8 @@ func (w *WakuNode) connectednessListener() {
select {
case <-w.quit:
return
case a := <-w.protocolEventSub.Out():
case b := <-w.identificationEventSub.Out():
case <-w.protocolEventSub.Out():
case <-w.identificationEventSub.Out():
case <-w.connectionNotif.DisconnectChan:
}
w.sendConnStatus()