Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

R4R: change wrong password message #2994

Merged
merged 2 commits into from
Dec 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ BREAKING CHANGES

* Gaia
- [#128](https://github.com/tendermint/devops/issues/128) Updated CircleCI job to trigger website build on every push to master/develop.
- [\#2994](https://github.com/cosmos/cosmos-sdk/pull/2994) Change wrong-password error message.

* SDK
- [auth] \#2952 Signatures are no longer serialized on chain with the account number and sequence number

Expand Down
2 changes: 1 addition & 1 deletion crypto/keys/keyerror/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (e errWrongPassword) Code() int {
}

func (e errWrongPassword) Error() string {
return fmt.Sprintf("Ciphertext decryption failed")
return "invalid account password"
}

// NewErrWrongPassword returns a standardized error reflecting that the specified password is wrong
Expand Down