Skip to content

Commit 28fb78a

Browse files
committed
Bringing up to date
1 parent 7667d4c commit 28fb78a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vindex/cmd/ct/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func newStaticCTInputLogFromFlags() *staticCTInputLog {
138138
if err != nil {
139139
klog.Exitf("failed to create client: %v", err)
140140
}
141-
var tileReader torchwood.TileReaderWithContext = fetcher
141+
var tileReader torchwood.TileReader = fetcher
142142
if *persistentCacheDir != "" {
143143
tileReader, err = torchwood.NewPermanentCache(fetcher, *persistentCacheDir)
144144
if err != nil {
@@ -207,7 +207,7 @@ func (l *staticCTInputLog) Leaves(ctx context.Context, start, end uint64) iter.S
207207
func outputLogOrDie(ctx context.Context, outputLogDir string) (log vindex.OutputLog, closer func()) {
208208
s, v := getOutputLogSignerVerifierOrDie()
209209

210-
l, c, err := vindex.NewOutputLog(ctx, outputLogDir, s, v)
210+
l, c, err := vindex.NewOutputLog(ctx, outputLogDir, s, v, vindex.OutputLogOpts{})
211211
if err != nil {
212212
klog.Exit(err)
213213
}

0 commit comments

Comments
 (0)