Fixed default directory

This commit is contained in:
Ethan Frey 2018-02-07 17:54:45 +01:00 committed by Ethan Buchman
parent 91592a91f1
commit 94251eaf7c
1 changed files with 2 additions and 1 deletions

View File

@ -59,6 +59,7 @@ func main() {
// post tx commands (custom to binary)
gaiacliCmd.AddCommand(
PostCommands(postSendCommand())...)
// add proxy, version and key info
gaiacliCmd.AddCommand(
lineBreak,
@ -69,6 +70,6 @@ func main() {
)
// prepare and add flags
executor := cli.PrepareBaseCmd(gaiacliCmd, "GA", os.ExpandEnv("$HOME/.cosmos-chub"))
executor := cli.PrepareBaseCmd(gaiacliCmd, "GA", os.ExpandEnv("$HOME/.gaiacli"))
executor.Execute()
}