Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Dec 3, 2024
1 parent 238dc20 commit 721469b
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions erigon-lib/state/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -1326,20 +1326,6 @@ func (d *Domain) missedAccessors() (l []*filesItem) {
return l
}

//func (d *Domain) missedExistenceFilter() (l []*filesItem) {
// d.files.Walk(func(items []*filesItem) bool { // don't run slow logic while iterating on btree
// for _, item := range items {
// fromStep, toStep := item.startTxNum/d.aggregationStep, item.endTxNum/d.aggregationStep
// bloomPath := d.kvExistenceIdxFilePath(fromStep, toStep)
// if !dir.FileExist(bloomPath) {
// l = append(l, item)
// }
// }
// return true
// })
// return l
//}

// BuildMissedAccessors - produce .efi/.vi/.kvi from .ef/.v/.kv
func (d *Domain) BuildMissedAccessors(ctx context.Context, g *errgroup.Group, ps *background.ProgressSet) {
d.History.BuildMissedAccessors(ctx, g, ps)
Expand Down

0 comments on commit 721469b

Please sign in to comment.