add block store options to block store constructor

This commit is contained in:
William Banfield
2022-11-28 12:52:59 -05:00
parent 31c88322fb
commit 381244144f
18 changed files with 50 additions and 41 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ func main() {
if err != nil {
panic(err)
}
s := store.NewBlockStore(db)
s := store.NewBlockStore(db, store.BlockStoreOptions{})
defer s.Close()
rs, err := report.GenerateFromBlockStore(s)
if err != nil {