Skip to content

Commit

Permalink
Merge PR #3731: Fix keys add --interactive regression
Browse files Browse the repository at this point in the history
  • Loading branch information
jackzampolin authored Feb 25, 2019
1 parent 6d2da06 commit 250dc98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ CLI flag.

### Gaia CLI

* [\#3731](https://github.com/cosmos/cosmos-sdk/pull/3731) `keys add --interactive` bip32 passphrase regression fix

### Gaia

### SDK
Expand Down
2 changes: 1 addition & 1 deletion client/keys/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func runAddCmd(_ *cobra.Command, args []string) error {
}
}

info, err := kb.CreateAccount(name, mnemonic, keys.DefaultBIP39Passphrase, encryptPassword, account, index)
info, err := kb.CreateAccount(name, mnemonic, bip39Passphrase, encryptPassword, account, index)
if err != nil {
return err
}
Expand Down

0 comments on commit 250dc98

Please sign in to comment.