From 4e86c0ea29ed76bf82561b5d3a2135e40b84eecc Mon Sep 17 00:00:00 2001 From: Al Cutter Date: Wed, 28 Aug 2024 14:55:31 +0000 Subject: [PATCH] Correct CT entries path --- ct_only.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct_only.go b/ct_only.go index 33dbdf7e7..4895241ae 100644 --- a/ct_only.go +++ b/ct_only.go @@ -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)) } } }