mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
3416962fc2
* package level godocs fixed * all beacon node godocs * comment and gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
14 lines
391 B
Go
14 lines
391 B
Go
// Package db defines the ability to create a new database
|
|
// for an eth2 beacon node.
|
|
package db
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
)
|
|
|
|
// NewDB initializes a new DB.
|
|
func NewDB(dirPath string, stateSummaryCache *cache.StateSummaryCache) (Database, error) {
|
|
return kv.NewKVStore(dirPath, stateSummaryCache)
|
|
}
|