Merge pull request #711 from cosmos/cwgoes/move-basecoin-db
Move basecoin.db to ~/.basecoind/data
This commit is contained in:
commit
a9ce90a95d
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
|
@ -50,7 +51,7 @@ func defaultOptions(args []string) (json.RawMessage, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func generateApp(rootDir string, logger log.Logger) (abci.Application, error) {
|
func generateApp(rootDir string, logger log.Logger) (abci.Application, error) {
|
||||||
db, err := dbm.NewGoLevelDB("basecoin", rootDir)
|
db, err := dbm.NewGoLevelDB("basecoin", filepath.Join(rootDir, "data"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package mock
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
abci "github.com/tendermint/abci/types"
|
abci "github.com/tendermint/abci/types"
|
||||||
dbm "github.com/tendermint/tmlibs/db"
|
dbm "github.com/tendermint/tmlibs/db"
|
||||||
|
@ -17,7 +18,7 @@ import (
|
||||||
// Make sure rootDir is empty before running the test,
|
// Make sure rootDir is empty before running the test,
|
||||||
// in order to guarantee consistent results
|
// in order to guarantee consistent results
|
||||||
func NewApp(rootDir string, logger log.Logger) (abci.Application, error) {
|
func NewApp(rootDir string, logger log.Logger) (abci.Application, error) {
|
||||||
db, err := dbm.NewGoLevelDB("mock", rootDir)
|
db, err := dbm.NewGoLevelDB("mock", filepath.Join(rootDir, "data"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue