tadd mnemonic functions to module - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5bb441ce3768f9daacb2453067df90fecba85595 DIR parent 6fc0ae633d418ff997359b89212b4f42d9ed9b68 HTML Author: ThomasV <thomasv@gitorious> Date: Sun, 4 Nov 2012 19:40:17 +0100 add mnemonic functions to module Diffstat: M electrum | 6 +++--- M lib/__init__.py | 2 ++ M lib/interface.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) --- DIR diff --git a/electrum b/electrum t@@ -253,7 +253,7 @@ if __name__ == '__main__': seed.decode('hex') except: print_error("Warning: Not hex, trying decode.") - seed = mnemonic.mn_decode( seed.split(' ') ) + seed = mnemonic_decode( seed.split(' ') ) if not seed: sys.exit("Error: No seed") t@@ -282,7 +282,7 @@ if __name__ == '__main__': print "Your wallet generation seed is: " + wallet.seed print "Please keep it in a safe place; if you lose it, you will not be able to restore your wallet." print "Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:" - print "\""+' '.join(mnemonic.mn_encode(wallet.seed))+"\"" + print "\""+' '.join(mnemonic_encode(wallet.seed))+"\"" print "Wallet saved in '%s'"%wallet.config.path if password: t@@ -360,7 +360,7 @@ if __name__ == '__main__': elif cmd == 'seed': seed = wallet.pw_decode( wallet.seed, password) - print seed + ' "' + ' '.join(mnemonic.mn_encode(seed)) + '"' + print seed + ' "' + ' '.join(mnemonic_encode(seed)) + '"' elif cmd == 'deseed': if not wallet.seed: DIR diff --git a/lib/__init__.py b/lib/__init__.py t@@ -4,3 +4,5 @@ from verifier import WalletVerifier from interface import Interface, pick_random_server, DEFAULT_SERVERS from simple_config import SimpleConfig import bitcoin +from mnemonic import mn_encode as mnemonic_encode +from mnemonic import mn_decode as mnemonic_decode DIR diff --git a/lib/interface.py b/lib/interface.py t@@ -75,7 +75,7 @@ class Interface(threading.Thread): def queue_json_response(self, c): # uncomment to debug - # print "<--",c + # print_error( "<--",c ) msg_id = c.get('id') error = c.get('error')