Merge pull request #539 from xHire/master

Fix generating encrypted wallet from command line
This commit is contained in:
ThomasV 2014-01-10 21:55:35 -08:00
commit 47901bbb05
1 changed files with 1 additions and 1 deletions

View File

@ -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)