Skip to content

Commit

Permalink
Add pwd flags to appTransferCmd (#1608)
Browse files Browse the repository at this point in the history
Enable running `pocket apps transfer` with the `--pwd` flag so it can be
automated.
  • Loading branch information
Olshansk authored Aug 14, 2024
1 parent a23210f commit 7f936ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/cmd/cli/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ func init() {
appStakeCmd.Flags().StringVar(&pwd, "pwd", "", "passphrase used by the cmd, non empty usage bypass interactive prompt")
appUnstakeCmd.Flags().StringVar(&pwd, "pwd", "", "passphrase used by the cmd, non empty usage bypass interactive prompt")
createAATCmd.Flags().StringVar(&pwd, "pwd", "", "passphrase used by the cmd, non empty usage bypass interactive prompt")
appTransferCmd.Flags().StringVar(&pwd, "pwd", "", "passphrase used by the cmd, non empty usage bypass interactive prompt")
}

var appStakeCmd = &cobra.Command{
Expand Down

0 comments on commit 7f936ff

Please sign in to comment.