From eb6d383da7ffaaf417396164f83b15ca613ac976 Mon Sep 17 00:00:00 2001 From: xHire Date: Fri, 10 Jan 2014 21:10:48 +0100 Subject: [PATCH] Fix generating encrypted wallet from command line --- electrum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum b/electrum index 059d5f2f..a8934c2f 100755 --- a/electrum +++ b/electrum @@ -256,7 +256,7 @@ if __name__ == '__main__': wallet.init_seed(None) wallet.save_seed(password) wallet.synchronize() - print_msg("Your wallet generation seed is:\n\"%s\"" % wallet.get_mnemonic(None)) + print_msg("Your wallet generation seed is:\n\"%s\"" % wallet.get_mnemonic(password)) print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.") print_msg("Wallet saved in '%s'" % wallet.storage.path)