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
@@ -76,7 +76,7 @@ func newReactor(
stateStore := sm.NewStore(stateDB, sm.StoreOptions{
DiscardABCIResponses: false,
})
blockStore := store.NewBlockStore(blockDB)
blockStore := store.NewBlockStore(blockDB, store.BlockStoreOptions{})
state, err := stateStore.LoadFromDBOrGenesisDoc(genDoc)
if err != nil {