aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethcrypto/key_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethcrypto/key_store.go b/ethcrypto/key_store.go
index c8c506fda..f14f14205 100644
--- a/ethcrypto/key_store.go
+++ b/ethcrypto/key_store.go
@@ -61,7 +61,7 @@ func (k *FileKeyStore) Save(session string, keyRing *KeyRing) error {
privateKeys = append(privateKeys, ethutil.Bytes2Hex(keyPair.PrivateKey))
publicKeys = append(publicKeys, ethutil.Bytes2Hex(keyPair.PublicKey))
addresses = append(addresses, ethutil.Bytes2Hex(keyPair.Address()))
- mnemonics = append(mnemonics, strings.Join(MnemonicEncode(ethutil.Bytes2Hex(keyPair.PrivateKey)), " "))
+ mnemonics = append(mnemonics, keyPair.Mnemonic())
})
basename := session