Unverified Commit 256aae0b authored by EXEC's avatar EXEC Committed by GitHub

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.
parent 1c90d97c
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment