mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
eth/filters: put back chain event
This commit is contained in:
parent
2223a9e89c
commit
cb41f82f87
1 changed files with 2 additions and 0 deletions
|
|
@ -419,6 +419,8 @@ func (es *EventSystem) eventLoop() {
|
|||
es.handleLogs(index, ev)
|
||||
case ev := <-es.rmLogsCh:
|
||||
es.handleLogs(index, ev.Logs)
|
||||
case ev := <-es.chainCh:
|
||||
es.handleChainEvent(index, ev)
|
||||
|
||||
case f := <-es.install:
|
||||
index[f.typ][f.id] = f
|
||||
|
|
|
|||
Loading…
Reference in a new issue