From 94251eaf7cca65cc1fc0579eda5cf6f081c792db Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Wed, 7 Feb 2018 17:54:45 +0100 Subject: [PATCH] Fixed default directory --- examples/gaiacli/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/gaiacli/main.go b/examples/gaiacli/main.go index 4957a26ced..6321e25ee7 100644 --- a/examples/gaiacli/main.go +++ b/examples/gaiacli/main.go @@ -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() }