Skip to content

Commit

Permalink
Correct CT entries path
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Aug 28, 2024
1 parent e120171 commit ce7582b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ct_only.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func convertCTEntry(e *ctonly.Entry) *Entry {
func WithCTLayout() func(*StorageOptions) {
return func(opts *StorageOptions) {
opts.EntriesPath = func(n, logSize uint64) string {
return fmt.Sprintf("tile/entries%s", layout.NWithSuffix(0, n, logSize))
return fmt.Sprintf("tile/data%s", layout.NWithSuffix(0, n, logSize))
}
}
}

0 comments on commit ce7582b

Please sign in to comment.