mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +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
|
||||
// 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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue