node/watchers/evm: comment TOB-WORMGUWA-8

This commit is contained in:
tbjump 2023-05-04 00:20:20 +00:00 committed by tbjump
parent 5d137b6d88
commit 3e1b31e7db
1 changed files with 1 additions and 1 deletions

View File

@ -63,6 +63,6 @@ func (sub *PollSubscription) Unsubscribe() {
<-sub.unsubDone
case <-sub.unsubDone:
}
close(sub.err)
close(sub.err) // TODO FIXME this violates golang guidelines “Only the sender should close a channel, never the receiver. Sending on a closed channel will cause a panic.”
})
}