From 5d7e5b00be3eb04a334366d78b6ab742772c8e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 27 Mar 2020 22:33:14 +0700 Subject: [PATCH] eth/filters: fix typo on unindexedLogs function's comment (#20827) --- eth/filters/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/filters/filter.go b/eth/filters/filter.go index 2184092071..17635837af 100644 --- a/eth/filters/filter.go +++ b/eth/filters/filter.go @@ -210,7 +210,7 @@ func (f *Filter) indexedLogs(ctx context.Context, end uint64) ([]*types.Log, err } } -// indexedLogs returns the logs matching the filter criteria based on raw block +// unindexedLogs returns the logs matching the filter criteria based on raw block // iteration and bloom matching. func (f *Filter) unindexedLogs(ctx context.Context, end uint64) ([]*types.Log, error) { var logs []*types.Log