Skip to content

Commit 57e6518

Browse files
authored
Update cmd/goal/wallet.go
1 parent f5417d6 commit 57e6518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/goal/wallet.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ func init() {
4747

4848
// Should we recover the wallet?
4949
newWalletCmd.Flags().BoolVarP(&recoverWallet, "recover", "r", false, "Recover the wallet from the backup mnemonic provided at wallet creation (NOT the mnemonic provided by goal account export or by algokey). Regenerate accounts in the wallet with `goal account new`")
50-
newWalletCmd.Flags().BoolVarP(&createUnencryptedWallet, "unencrypted", "n", false, "Create a new wallet without prompting for password.")
51-
newWalletCmd.Flags().BoolVarP(&noDisplaySeed, "no-display-seed", "s", false, "Create a new wallet without displaying the seed phrase.")
50+
newWalletCmd.Flags().BoolVar(&createUnencryptedWallet, "unencrypted", false, "Create a new wallet without prompting for password.")
51+
newWalletCmd.Flags().BoolVar(&noDisplaySeed, "no-display-seed", false, "Create a new wallet without displaying the seed phrase.")
5252
}
5353

5454
var walletCmd = &cobra.Command{

0 commit comments

Comments
 (0)