mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
90fbe1aad7
* Make rocksdb configurable * Make sure rocksdb tests are running in CI * Updating ci-rocksdb-build workflow * Remove test.sh * Update tm-db dependency
19 lines
545 B
Go
19 lines
545 B
Go
//go:build !rocksdb
|
|
// +build !rocksdb
|
|
|
|
package opendb
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/cosmos/cosmos-sdk/server/types"
|
|
dbm "github.com/tendermint/tm-db"
|
|
)
|
|
|
|
// OpenDB is a copy of default DBOpener function used by ethermint, see for details:
|
|
// https://github.com/evmos/ethermint/blob/07cf2bd2b1ce9bdb2e44ec42a39e7239292a14af/server/start.go#L647
|
|
func OpenDB(_ types.AppOptions, home string, backendType dbm.BackendType) (dbm.DB, error) {
|
|
dataDir := filepath.Join(home, "data")
|
|
return dbm.NewDB("application", backendType, dataDir)
|
|
}
|