2020-04-29 17:40:33 +00:00
|
|
|
// Package db defines the ability to create a new database
|
|
|
|
// for an eth2 beacon node.
|
2018-10-05 17:14:50 +00:00
|
|
|
package db
|
|
|
|
|
2020-03-30 22:10:45 +00:00
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
|
|
)
|
2019-08-09 19:17:18 +00:00
|
|
|
|
2019-08-14 18:48:28 +00:00
|
|
|
// NewDB initializes a new DB.
|
2020-03-30 22:10:45 +00:00
|
|
|
func NewDB(dirPath string, stateSummaryCache *cache.StateSummaryCache) (Database, error) {
|
|
|
|
return kv.NewKVStore(dirPath, stateSummaryCache)
|
2019-08-14 18:48:28 +00:00
|
|
|
}
|