mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
eth/filters: Update comment about mipmaps
This commit is contained in:
parent
8d26de87aa
commit
e98fce5494
1 changed files with 2 additions and 2 deletions
|
|
@ -54,8 +54,8 @@ type Filter struct {
|
||||||
|
|
||||||
// New creates a new filter which uses a bloom filter on blocks to figure out whether
|
// New creates a new filter which uses a bloom filter on blocks to figure out whether
|
||||||
// a particular block is interesting or not.
|
// a particular block is interesting or not.
|
||||||
// MipMaps allow past blocks to be searched much more efficiently, and can be enabled
|
// MipMaps allow past blocks to be searched much more efficiently, but are not available
|
||||||
// any time a filter includes addresses to filter on.
|
// to light clients.
|
||||||
func New(backend Backend, useMipMap bool) *Filter {
|
func New(backend Backend, useMipMap bool) *Filter {
|
||||||
return &Filter{
|
return &Filter{
|
||||||
backend: backend,
|
backend: backend,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue