Skip to content

Commit

Permalink
Add example
Browse files Browse the repository at this point in the history
  • Loading branch information
chengwenxi committed Nov 19, 2018
1 parent 32c844c commit e8ed3f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/bank/cli/broadcast.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ func GetBroadcastCommand(codec *amino.Codec) *cobra.Command {
Short: "Broadcast transactions generated offline",
Long: `Broadcast transactions created with the --generate-only flag and signed with the sign command.
Read a transaction from <file> and broadcast it to a node.`,
Example: "iriscli bank broadcast <file>",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) (err error) {
cliCtx := context.NewCLIContext().WithCodec(codec)
Expand Down
1 change: 1 addition & 0 deletions client/bank/cli/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Read a transaction from <file>, sign it, and print its JSON encoding.
The --offline flag makes sure that the client will not reach out to the local cache.
Thus account number or sequence number lookups will not be performed and it is
recommended to set such parameters manually.`,
Example: "iriscli bank sign <file> --name <key name> --chain-id=<chain-id>",
RunE: makeSignCmd(codec, decoder),
Args: cobra.ExactArgs(1),
}
Expand Down

0 comments on commit e8ed3f4

Please sign in to comment.