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
@@ -130,7 +130,7 @@ func initDBs(config *cfg.Config, dbProvider DBProvider) (blockStore *store.Block
if err != nil {
return
}
blockStore = store.NewBlockStore(blockStoreDB)
blockStore = store.NewBlockStore(blockStoreDB, store.BlockStoreOptions{})
stateDB, err = dbProvider(&DBContext{"state", config})
if err != nil {