Skip to content

Commit

Permalink
客户端命令修改及v0.0.9 changelog提交
Browse files Browse the repository at this point in the history
  • Loading branch information
TokenxyWZY authored and kauchy committed Dec 24, 2018
1 parent 31be302 commit ecc17e5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 195 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.0.9
2018.12.24

**IMPROVEMENTS**
* [client] 客户端部分命令修改

## v0.0.8
2018.12.21

Expand Down
2 changes: 0 additions & 2 deletions client/keys/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ func KeysCommand(cdc *go_amino.Codec) *cobra.Command {
needs to sign with a private key.`,
}
cmd.AddCommand(
mnemonicKeyCommand(),
newKeyCommand(cdc),
addKeyCommand(cdc),
listKeysCmd(cdc),
types.LineBreak,
Expand Down
41 changes: 0 additions & 41 deletions client/keys/mnemonic.go

This file was deleted.

147 changes: 0 additions & 147 deletions client/keys/new.go

This file was deleted.

6 changes: 2 additions & 4 deletions server/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,8 @@ func InitCmd(ctx *Context, cdc *Codec, appInit AppInit) *cobra.Command {
}
cmd.Flags().BoolP(FlagOverwrite, "o", false, "overwrite the genesis.json file")
cmd.Flags().String(FlagChainID, "", "genesis file chain-id, if left blank will be randomly created")
cmd.Flags().Bool(FlagWithTxs, false, "apply existing genesis transactions from [--home]/config/gentx/")
cmd.Flags().AddFlagSet(appInit.FlagsAppGenState)
cmd.Flags().AddFlagSet(appInit.FlagsAppGenTx) // need to add this flagset for when no GenTx's provided
cmd.AddCommand(GenTxCmd(ctx, cdc, appInit))
cmd.Flags().String(FlagName, "", "a custom human readable name for this node. required")
cmd.MarkFlagRequired(FlagName)
return cmd
}

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package version

// GitCommit set by build flags
var Version = "0.0.8"
var Version = "0.0.9"

0 comments on commit ecc17e5

Please sign in to comment.