fix: remove print

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

View File

@ -94,9 +94,7 @@ func (w *WakuNode) connectednessListener() {
case <-w.quit: case <-w.quit:
return return
case a := <-w.protocolEventSub.Out(): case a := <-w.protocolEventSub.Out():
fmt.Println(a)
case b := <-w.identificationEventSub.Out(): case b := <-w.identificationEventSub.Out():
fmt.Println(b)
case <-w.connectionNotif.DisconnectChan: case <-w.connectionNotif.DisconnectChan:
} }
w.sendConnStatus() w.sendConnStatus()