prysm-pulse/beacon-chain/db/db.go

16 lines
429 B
Go
Raw Normal View History

// 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
import (
"context"
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
)
// NewDB initializes a new DB.
func NewDB(ctx context.Context, dirPath string, stateSummaryCache *cache.StateSummaryCache) (Database, error) {
return kv.NewKVStore(ctx, dirPath, stateSummaryCache)
}