Update pending log

This commit is contained in:
Aleksandr Bezobchuk 2018-08-27 18:45:34 -04:00
parent fc20f757ec
commit 0245a4b5ee
2 changed files with 3 additions and 1 deletions

View File

@ -79,5 +79,7 @@ BUG FIXES
* SDK
* \#1988 Make us compile on OpenBSD (disable ledger) [#1988] (https://github.com/cosmos/cosmos-sdk/issues/1988)
* \#2105 Fix DB Iterator leak, which may leak a go routine.
* [ledger] \#2064 Fix inability to sign and send transactions via the LCD by
loading a Ledger device at runtime.
* Tendermint

View File

@ -59,7 +59,7 @@ func NewPrivKeyLedgerSecp256k1(path DerivationPath) (tmcrypto.PrivKey, error) {
ledgerDevice = device
} else {
return nil, errors.New("no ledger discovery function defined")
return nil, errors.New("no Ledger discovery function defined")
}
pkl := &PrivKeyLedgerSecp256k1{Path: path, ledger: ledgerDevice}