Browse Source

Correct display of wallet mnemonic extension in cli

master
Kristaps Kaupe 6 years ago
parent
commit
49ea4e44bf
No known key found for this signature in database
GPG Key ID: D47B1B4232B55437
  1. 2
      jmclient/jmclient/wallet_utils.py

2
jmclient/jmclient/wallet_utils.py

@ -872,7 +872,7 @@ def wallet_showseed(wallet):
seed, extension = wallet.get_mnemonic_words()
text = "Wallet mnemonic recovery phrase:\n\n{}\n".format(seed)
if extension:
text += "\nWallet mnemonic extension: {}\n".format(extension)
text += "\nWallet mnemonic extension: {}\n".format(extension.decode('utf-8'))
return text

Loading…
Cancel
Save