From e98fce54940cd37d0d73ced6692ebaa9ab6d7e7f Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Thu, 15 Dec 2016 16:15:05 +0000 Subject: [PATCH] eth/filters: Update comment about mipmaps --- eth/filters/filter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/filters/filter.go b/eth/filters/filter.go index 07aa1781d6..76ca86524d 100644 --- a/eth/filters/filter.go +++ b/eth/filters/filter.go @@ -54,8 +54,8 @@ type Filter struct { // New creates a new filter which uses a bloom filter on blocks to figure out whether // a particular block is interesting or not. -// MipMaps allow past blocks to be searched much more efficiently, and can be enabled -// any time a filter includes addresses to filter on. +// MipMaps allow past blocks to be searched much more efficiently, but are not available +// to light clients. func New(backend Backend, useMipMap bool) *Filter { return &Filter{ backend: backend,