mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 06:53:46 +00:00
Merge 72c8473ffb into 80f7c6c299
This commit is contained in:
commit
01921d09f0
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ func (f *Filter) mipFind(start, end uint64, depth int) (logs []*types.Log, block
|
||||||
// up where a previous run left off.
|
// up where a previous run left off.
|
||||||
first := true
|
first := true
|
||||||
for _, addr := range f.addresses {
|
for _, addr := range f.addresses {
|
||||||
if first || bloom.TestBytes(addr[:]) {
|
if first && bloom.TestBytes(addr[:]) {
|
||||||
first = false
|
first = false
|
||||||
// range check normalised values and make sure that
|
// range check normalised values and make sure that
|
||||||
// we're resolving the correct range instead of the
|
// we're resolving the correct range instead of the
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue