From c08a3fec04b1b931153c4db2b3da3481ace8b4c6 Mon Sep 17 00:00:00 2001 From: rigelrozanski Date: Sat, 9 Jun 2018 01:04:40 -0700 Subject: [PATCH] lawl viper --- client/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/flags.go b/client/flags.go index aacd4ba1d..2d68d3146 100644 --- a/client/flags.go +++ b/client/flags.go @@ -26,7 +26,6 @@ func GetCommands(cmds ...*cobra.Command) []*cobra.Command { c.Flags().String(FlagChainID, "", "Chain ID of tendermint node") c.Flags().String(FlagNode, "tcp://localhost:46657", ": to tendermint rpc interface for this chain") c.Flags().Int64(FlagHeight, 0, "block height to query, omit to get most recent provable block") - c.Flags().Int64(FlagGas, 200000, "gas limit to set per-transaction") } return cmds } @@ -39,6 +38,7 @@ func PostCommands(cmds ...*cobra.Command) []*cobra.Command { c.Flags().String(FlagFee, "", "Fee to pay along with transaction") c.Flags().String(FlagChainID, "", "Chain ID of tendermint node") c.Flags().String(FlagNode, "tcp://localhost:46657", ": to tendermint rpc interface for this chain") + c.Flags().Int64(FlagGas, 200000, "gas limit to set per-transaction") } return cmds }