Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
removing txsSub reference everywhere (#19)
Browse files Browse the repository at this point in the history
* txsSub removed all ref
  • Loading branch information
transmissions12 authored Mar 21, 2023
1 parent e3ca3ff commit 019945f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eth/filters/filter_system.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ type EventSystem struct {
lastHead *types.Header

// Subscriptions
txsSub event.Subscription // Subscription for new transaction event
// txsSub event.Subscription // Subscription for new transaction event
logsSub event.Subscription // Subscription for new log event
rmLogsSub event.Subscription // Subscription for removed log event
pendingLogsSub event.Subscription // Subscription for pending log event
Expand Down Expand Up @@ -599,8 +599,8 @@ func (es *EventSystem) eventLoop() {
close(f.err)

// System stopped
case <-es.txsSub.Err():
return
// case <-es.txsSub.Err():
// return
case <-es.logsSub.Err():
return
case <-es.rmLogsSub.Err():
Expand Down

0 comments on commit 019945f

Please sign in to comment.