eth/filters: remove explicit continue label in filterLogs (#24795)

The loop label can be removed because this 'continue' statement
is not in a nested loop.
pull/24824/head
EXEC 3 years ago committed by GitHub
parent 1c90d97c1e
commit 256aae0bfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      eth/filters/filter.go

@ -299,7 +299,7 @@ Logs:
}
// If the to filtered topics is greater than the amount of topics in logs, skip.
if len(topics) > len(log.Topics) {
continue Logs
continue
}
for i, sub := range topics {
match := len(sub) == 0 // empty rule set == wildcard

Loading…
Cancel
Save