Skip to content

Commit

Permalink
Caplin: support to release caplin state hashes (#12691)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 authored Nov 9, 2024
1 parent 143ea44 commit cdcf235
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion erigon-lib/downloader/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,11 @@ func AllTorrentPaths(dirs datadir.Dirs) ([]string, error) {
if err != nil {
return nil, err
}
files = append(append(append(append(files, l1...), l2...), l3...), l4...)
l5, err := dir2.ListFiles(dirs.SnapCaplin, ".torrent")
if err != nil {
return nil, err
}
files = append(append(append(append(append(files, l1...), l2...), l3...), l4...), l5...)
return files, nil
}

Expand Down

0 comments on commit cdcf235

Please sign in to comment.