separate LMDB options for hotstore and tracking stores

This commit is contained in:
vyzo
2021-03-05 14:46:17 +02:00
parent 2c1a9781cf
commit b83994797a
3 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ func SplitBlockstore(cfg *config.Blockstore) func(lc fx.Lifecycle, r repo.Locked
return nil, err
}
ss, err := splitstore.NewSplitStore(path, ds, cold, hot, cfg.UseLMDB)
ss, err := splitstore.NewSplitStore(path, ds, cold, hot, cfg.UseLMDBTracking)
if err != nil {
return nil, err
}