eth/filters: reset filter.begin in BenchmarkFilters (#28830)

This commit is contained in:
Darioush Jalali 2024-01-18 04:08:13 -08:00 committed by GitHub
parent e5d5e09faa
commit 830f3c764c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -99,6 +99,7 @@ func BenchmarkFilters(b *testing.B) {
filter := sys.NewRangeFilter(0, -1, []common.Address{addr1, addr2, addr3, addr4}, nil)
for i := 0; i < b.N; i++ {
filter.begin = 0
logs, _ := filter.Logs(context.Background())
if len(logs) != 4 {
b.Fatal("expected 4 logs, got", len(logs))