Skip to content

Commit

Permalink
support trace system tx
Browse files Browse the repository at this point in the history
  • Loading branch information
blxdyx committed Oct 17, 2024
1 parent d11bc94 commit 18082b2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/downloader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,14 @@ func manifest(ctx context.Context, logger log.Logger) error {
}
files = append(files, "idx/"+fName)
}
l, _ = dir.ListFiles(dirs.SnapAccessors, extList...)
for _, fPath := range l {
_, fName := filepath.Split(fPath)
if strings.Contains(fName, "commitment") {
continue
}
files = append(files, "accessor/"+fName)
}

sort.Strings(files)
for _, f := range files {
Expand Down

0 comments on commit 18082b2

Please sign in to comment.