2020-04-29 17:40:33 +00:00
|
|
|
// Package db defines the ability to create a new database
|
2021-06-26 19:00:33 +00:00
|
|
|
// for an Ethereum Beacon Node.
|
2018-10-05 17:14:50 +00:00
|
|
|
package db
|
|
|
|
|
2020-03-30 22:10:45 +00:00
|
|
|
import (
|
2020-12-15 22:07:01 +00:00
|
|
|
"context"
|
|
|
|
|
2023-03-17 18:52:56 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/db/kv"
|
2020-03-30 22:10:45 +00:00
|
|
|
)
|
2019-08-09 19:17:18 +00:00
|
|
|
|
2019-08-14 18:48:28 +00:00
|
|
|
// NewDB initializes a new DB.
|
2022-08-17 12:22:41 +00:00
|
|
|
func NewDB(ctx context.Context, dirPath string) (Database, error) {
|
|
|
|
return kv.NewKVStore(ctx, dirPath)
|
2019-08-14 18:48:28 +00:00
|
|
|
}
|
2021-04-23 17:06:13 +00:00
|
|
|
|
2021-04-30 20:37:38 +00:00
|
|
|
// NewDBFilename uses the KVStoreDatafilePath so that if this layer of
|
|
|
|
// indirection between db.NewDB->kv.NewKVStore ever changes, it will be easy to remember
|
|
|
|
// to also change this filename indirection at the same time.
|
|
|
|
func NewDBFilename(dirPath string) string {
|
|
|
|
return kv.KVStoreDatafilePath(dirPath)
|
|
|
|
}
|