mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
core/filtermaps: use range-over-int
This commit is contained in:
parent
c150991801
commit
7c072611e9
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ func (m *matcherEnv) process() ([]*types.Log, error) {
|
|||
wg.Done()
|
||||
}
|
||||
|
||||
for i := 0; i < 4; i++ {
|
||||
for range 4 {
|
||||
wg.Add(1)
|
||||
go worker()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue