Reorg state package and fix all imports

This commit is contained in:
Ethan Frey
2017-07-27 15:31:33 -04:00
parent d0d1a96517
commit d607b76234
9 changed files with 26 additions and 29 deletions
+1 -2
View File
@@ -20,7 +20,6 @@ import (
"github.com/tendermint/tendermint/types"
"github.com/tendermint/basecoin/app"
"github.com/tendermint/basecoin/state/merkle"
)
// StartCmd - command to start running the basecoin node!
@@ -56,7 +55,7 @@ func init() {
func startCmd(cmd *cobra.Command, args []string) error {
rootDir := viper.GetString(cli.HomeFlag)
store := merkle.NewStore(
store := app.NewStore(
path.Join(rootDir, "data", "merkleeyes.db"),
EyesCacheSize,
logger.With("module", "store"),