mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
e82e582cdf
* add flag to exclude kafka * Add config flag to exclude kafka * Merge branch 'master' into buildtime-exclude-kafka
9 lines
183 B
Go
9 lines
183 B
Go
package db
|
|
|
|
import "github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
|
|
// NewDB initializes a new DB.
|
|
func NewDB(dirPath string) (Database, error) {
|
|
return kv.NewKVStore(dirPath)
|
|
}
|