multi: fix dropped errors

This commit is contained in:
Joost Jager
2019-09-13 09:48:43 +02:00
parent ffb8c0cfc3
commit 1e0ed1e52f
6 changed files with 10 additions and 10 deletions

View File

@ -349,7 +349,7 @@ func cipherTextToMnemonic(cipherText [EncipheredCipherSeedSize]byte) (Mnemonic,
for i := 0; i < NummnemonicWords; i++ {
index, err := cipherBits.ReadBits(bitsPerWord)
if err != nil {
return words, nil
return Mnemonic{}, err
}
words[i] = defaultWordList[index]
@ -366,7 +366,7 @@ func (c *CipherSeed) ToMnemonic(pass []byte) (Mnemonic, error) {
// with our KDF salt appended to it.
cipherText, err := c.encipher(pass)
if err != nil {
return Mnemonic{}, nil
return Mnemonic{}, err
}
// Now that we have our cipher text, we'll convert it into a mnemonic