eth/filters: ignore logs that don't match filter criteria on chain reorg

This commit is contained in:
Bas van Kervel 2016-04-28 12:33:42 +02:00
parent 123aa659e4
commit 48cc36ce83
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ func (fs *FilterSystem) filterLoop() {
fs.filterMu.RLock()
for _, filter := range fs.logFilters {
if filter.LogCallback != nil && !filter.created.After(event.Time) {
for _, removedLog := range ev.Logs {
for _, removedLog := range filter.FilterLogs(ev.Logs) {
filter.LogCallback(removedLog, true)
}
}