Merge branch 'master' of git://github.com/spesmilo/electrum
[electrum-nvc.git] / electrum
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2011 thomasv@gitorious
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 import re
20 import sys, os, time
21 import optparse
22
23 try:
24     import ecdsa  
25 except ImportError:
26     sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
27
28 try:
29     import aes
30 except ImportError:
31     sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
32
33 try:
34     from lib import *
35 except ImportError:
36     from electrum import *
37
38 from decimal import Decimal
39
40 known_commands = {
41     'help':'Prints this help',
42     'validateaddress':'Check that the address is valid', 
43     'balance': "Display the balance of your wallet or of an address.\nSyntax: balance [<address>]", 
44     'contacts': "Show your list of contacts", 
45     'create':'Create a wallet', 
46     'restore':'Restore a wallet', 
47     'payto':"""Create and broadcast a transaction.
48 Syntax: payto <recipient> <amount> [label]
49 <recipient> can be a bitcoin address or a label
50 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
51             """,
52     'sendtx':
53             'Broadcasts a transaction to the network. \nSyntax: sendtx <tx>\n<tx> must be in hexadecimal.',
54     'password': 
55             "Changes your password",
56     'addresses':  
57             """Shows your list of addresses.
58 options:
59   -a: show all addresses, including change addresses
60   -k: show private keys
61   -b: show the balance of addresses""",
62
63     'history':"Shows the transaction history",
64     'label':'Assign a label to an item\nSyntax: label <tx_hash> <label>',
65     'mktx':
66         """Create a signed transaction, password protected.
67 Syntax: mktx <recipient> <amount> [label]
68 options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
69         """,
70     'signtx':"Sign an unsigned transaction created by a deseeded wallet\nSyntax: signtx <filename>",
71     'seed':
72             "Print the generation seed of your wallet.",
73     'importprivkey': 
74             'Import a private key\nSyntax: importprivkey <privatekey>',
75     'signmessage':
76             'Signs a message with a key\nSyntax: signmessage <address> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "',
77     'verifymessage':
78              'Verifies a signature\nSyntax: verifymessage <address> <signature> <message>\nIf you want to lead or end a message with spaces, or want double spaces inside the message make sure you quote the string. I.e. " Hello  This is a weird String "',
79     'eval':  
80              "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
81     'get': 
82              "Get config parameter.",
83     'set': 
84              "Set config parameter.",
85     'deseed':
86             "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
87     'reseed':
88             "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
89     'freeze':'',
90     'unfreeze':'',
91     'prioritize':'',
92     'unprioritize':'',
93     }
94
95
96
97 offline_commands = [ 'password', 'mktx', 'signtx',
98                      'label', 'contacts',
99                      'help', 'validateaddress',
100                      'signmessage', 'verifymessage',
101                      'eval', 'set', 'get', 'create', 'addresses',
102                      'importprivkey', 'seed',
103                      'deseed','reseed',
104                      'freeze','unfreeze',
105                      'prioritize','unprioritize']
106
107
108 protected_commands = ['payto', 'password', 'mktx', 'signtx', 'seed', 'importprivkey','signmessage' ]
109
110 # get password routine
111 def prompt_password(prompt, confirm=True):
112     import getpass
113     if sys.stdin.isatty():
114         password = getpass.getpass(prompt)
115         if password and confirm:
116             password2 = getpass.getpass("Confirm: ")
117             if password != password2:
118                 sys.exit("Error: Passwords do not match.")
119     else:
120         password = raw_input(prompt)
121     if not password:
122         password = None
123     return password
124
125 def arg_parser():
126     usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
127     parser = optparse.OptionParser(prog=usage)
128     parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
129     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
130     parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
131     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
132     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
133     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
134     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
135     parser.add_option("-F", "--fromaddr", dest="from_addr", default=None, help="set source address for payto/mktx. if it isn't in the wallet, it will ask for the private key unless supplied in the format public_key:private_key. It's not saved in the wallet.")
136     parser.add_option("-c", "--changeaddr", dest="change_addr", default=None, help="set the change address for payto/mktx. default is a spare address, or the source address if it's not in the wallet")
137     parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
138     parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
139     parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="show debugging information")
140     parser.add_option("-P", "--portable", action="store_true", dest="portable", default=False, help="portable wallet")
141     parser.add_option("-L", "--lang", dest="language", default=None, help="defaut language used in GUI")
142     parser.add_option("-u", "--usb", dest="bitkey", action="store_true", help="Turn on support for hardware wallets (EXPERIMENTAL)")
143     return parser
144
145
146 if __name__ == '__main__':
147
148     parser = arg_parser()
149     options, args = parser.parse_args()
150     set_verbosity(options.verbose)
151
152     # config is an object passed to the various constructors (wallet, interface, gui)
153     if 'ANDROID_DATA' in os.environ:
154         config_options = {'wallet_path':"/sdcard/electrum.dat", 'portable':True, 'verbose':True, 'gui':'android'}
155     else:
156         config_options = eval(str(options))
157         for k, v in config_options.items():
158             if v is None: config_options.pop(k)
159
160     config = SimpleConfig(config_options)
161     wallet = Wallet(config)
162
163     if len(args)==0:
164         url = None
165         cmd = 'gui'
166     elif len(args)==1 and re.match('^bitcoin:', args[0]):
167         url = args[0]
168         cmd = 'gui'
169     else:
170         cmd = args[0]
171         firstarg = args[1] if len(args) > 1 else ''
172        
173     #this entire if/else block is just concerned with importing the 
174     #right GUI toolkit based the GUI command line option given 
175     if cmd == 'gui':
176         pref_gui = config.get('gui','classic')
177         if pref_gui == 'gtk':
178             try:
179                 import lib.gui as gui
180             except ImportError:
181                 import electrum.gui as gui
182         elif pref_gui in ['classic', 'qt']:
183             try:
184                 import lib.gui_qt as gui
185             except ImportError:
186                 import electrum.gui_qt as gui
187         elif pref_gui == 'lite':
188               try:
189                   import lib.gui_lite as gui
190               except ImportError:
191                   import electrum.gui_lite as gui
192         elif pref_gui == 'text':
193               try:
194                   import lib.gui_text as gui
195               except ImportError:
196                   import electrum.gui_text as gui
197         elif pref_gui == 'android':
198               try:
199                   import lib.gui_android as gui
200               except ImportError:
201                   import electrum.gui_android as gui
202         else:
203             sys.exit("Error: Unknown GUI: " + pref_gui )
204
205         
206         interface = Interface(config, True)
207         wallet.interface = interface
208         interface.start()
209         if interface.is_connected:
210             interface.send([('server.peers.subscribe',[])])
211
212         set_language(config.get('language'))
213         gui = gui.ElectrumGui(wallet, config)
214
215         found = config.wallet_file_exists
216         if not found:
217             a = gui.restore_or_create()
218             if not a: exit()
219             # select a server.
220             s = gui.network_dialog()
221
222             if a =='create':
223                 wallet.new_seed(None)
224                 wallet.init_mpk( wallet.seed )
225             else:
226                 # ask for seed and gap.
227                 sg = gui.seed_dialog()
228                 if not sg: exit()
229                 seed, gap = sg
230                 if not seed: exit()
231                 wallet.gap_limit = gap
232                 if len(seed) == 128:
233                     wallet.seed = None
234                     wallet.master_public_key = seed
235                 else:
236                     wallet.seed = str(seed)
237                     wallet.init_mpk( wallet.seed )
238             
239
240             # generate the first addresses, in case we are offline
241             if s is None or a == 'create':
242                 wallet.synchronize()
243             if a == 'create':
244                 # display seed
245                 gui.show_seed()
246
247         verifier = WalletVerifier(interface, config)
248         wallet.set_verifier(verifier)
249         synchronizer = WalletSynchronizer(wallet, config)
250         synchronizer.start()
251
252         if not found and a == 'restore' and s is not None:
253             try:
254                 keep_it = gui.restore_wallet()
255                 wallet.fill_addressbook()
256             except:
257                 import traceback
258                 traceback.print_exc(file=sys.stdout)
259                 exit()
260
261             if not keep_it: exit()
262
263         if not found:
264             gui.password_dialog()
265
266         wallet.save()
267         verifier.start()
268         gui.main(url)
269         wallet.save()
270
271         verifier.stop()
272         synchronizer.stop()
273         interface.stop()
274
275         # we use daemon threads, their termination is enforced.
276         # this sleep command gives them time to terminate cleanly. 
277         time.sleep(0.1)
278         sys.exit(0)
279
280     if cmd not in known_commands:
281         cmd = 'help'
282
283     if not config.wallet_file_exists and cmd not in ['help','create','restore']:
284         print_msg("Error: Wallet file not found.")
285         print_msg("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
286         sys.exit(0)
287     
288     if cmd in ['create', 'restore']:
289         if config.wallet_file_exists:
290             sys.exit("Error: Remove the existing wallet first!")
291         password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
292
293         server = config.get('server')
294         if not server: server = pick_random_server()
295         w_host, w_port, w_protocol = server.split(':')
296         host = raw_input("server (default:%s):"%w_host)
297         port = raw_input("port (default:%s):"%w_port)
298         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
299         fee = raw_input("fee (default:%s):"%( str(Decimal(wallet.fee)/100000000)) )
300         gap = raw_input("gap limit (default 5):")
301         if host: w_host = host
302         if port: w_port = port
303         if protocol: w_protocol = protocol
304         wallet.config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
305         if fee: wallet.fee = float(fee)
306         if gap: wallet.gap_limit = int(gap)
307
308         if cmd == 'restore':
309             seed = raw_input("seed:")
310             try:
311                 seed.decode('hex')
312             except:
313                 print_error("Warning: Not hex, trying decode.")
314                 seed = mnemonic_decode( seed.split(' ') )
315             if not seed:
316                 sys.exit("Error: No seed")
317
318             if len(seed) == 128:
319                 wallet.seed = None
320                 wallet.master_public_key = seed
321             else:
322                 wallet.seed = str(seed)
323                 wallet.init_mpk( wallet.seed )
324
325             if not options.offline:
326                 interface = Interface(config)
327                 interface.start()
328                 wallet.interface = interface
329
330                 verifier = WalletVerifier(interface, config)
331                 wallet.set_verifier(verifier)
332
333                 print_msg("Recovering wallet...")
334                 WalletSynchronizer(wallet, config).start()
335                 wallet.update()
336                 if wallet.is_found():
337                     print_msg("Recovery successful")
338                 else:
339                     print_msg("Warning: Found no history for this wallet")
340             else:
341                 wallet.synchronize()
342             wallet.fill_addressbook()
343             wallet.save()
344             print_msg("Wallet saved in '%s'"%wallet.config.path)
345         else:
346             wallet.new_seed(None)
347             wallet.init_mpk( wallet.seed )
348             wallet.synchronize() # there is no wallet thread 
349             wallet.save()
350             print_msg("Your wallet generation seed is: " + wallet.seed)
351             print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
352             print_msg("Equivalently, your wallet seed can be stored and recovered with the following mnemonic code:")
353             print_msg("\""+' '.join(mnemonic_encode(wallet.seed))+"\"")
354             print_msg("Wallet saved in '%s'"%wallet.config.path)
355             
356         if password:
357             wallet.update_password(wallet.seed, None, password)
358
359     # check syntax
360     if cmd in ['payto', 'mktx']:
361         try:
362             to_address = args[1]
363             amount = int( 100000000 * Decimal(args[2]) )
364             change_addr = None
365             label = ' '.join(args[3:])
366             if options.tx_fee: 
367                 options.tx_fee = int( 100000000 * Decimal(options.tx_fee) )
368         except:
369             firstarg = cmd
370             cmd = 'help'
371
372     # open session
373     if cmd not in offline_commands and not options.offline:
374         interface = Interface(config)
375         interface.register_callback('connected', lambda: sys.stderr.write("Connected to " + interface.connection_msg + "\n"))
376         interface.start()
377         wallet.interface = interface
378         synchronizer = WalletSynchronizer(wallet, config)
379         synchronizer.start()
380         wallet.update()
381         wallet.save()
382
383     # check if --from_addr not in wallet (for mktx/payto)
384     is_temporary = False
385     from_addr = None
386     if options.from_addr:
387         from_addr = options.from_addr
388         if from_addr not in wallet.all_addresses():
389             is_temporary = True
390                 
391     # important warning
392     if cmd=='addresses' and options.show_keys:
393         print_msg("WARNING: ALL your private keys are secret.")
394         print_msg("Exposing a single private key can compromise your entire wallet!")
395         print_msg("In particular, DO NOT use 'redeem private key' services proposed by third parties.")
396
397     # commands needing password
398     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
399         if wallet.use_encryption and not is_temporary:
400             password = prompt_password('Password:', False)
401             if not password:
402                 print_msg("Error: Password required")
403                 exit(1)
404             # check password
405             try:
406                 seed = wallet.decode_seed(password)
407             except:
408                 print_msg("Error: This password does not decode this wallet.")
409                 exit(1)
410         else:
411             password = None
412             seed = wallet.seed
413
414     if cmd == 'importprivkey':
415         # See if they specificed a key on the cmd line, if not prompt
416         if len(args) > 1:
417             sec = args[1]
418         else:
419             sec = prompt_password('Enter PrivateKey (will not echo):', False)
420         try:
421             addr = wallet.import_key(sec,password)
422             wallet.save()
423             print_msg("Keypair imported: ", addr)
424         except BaseException as e:
425             print_msg("Error: Keypair import failed: " + str(e))
426
427     if cmd == 'help':
428         cmd2 = firstarg
429         if cmd2 not in known_commands:
430             parser.print_help()
431             print_msg("Type 'electrum help <command>' to see the help for a specific command")
432             print_msg("Type 'electrum --help' to see the list of options")
433             print_msg("List of commands:", ', '.join(known_commands))
434         else:
435             print_msg(known_commands[cmd2])
436
437     elif cmd == 'seed':
438         print_msg(seed + ' "' + ' '.join(mnemonic_encode(seed)) + '"')
439
440     elif cmd == 'deseed':
441         if not wallet.seed:
442             print_msg("Error: This wallet has no seed")
443         elif wallet.use_encryption:
444             print_msg("Error: This wallet is encrypted")
445         else:
446             ns = wallet.config.path + '.seed'
447             print_msg("Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(wallet.config.path,ns))
448             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
449                 f = open(ns,'w')
450                 f.write(repr({'seed':wallet.seed, 'imported_keys':wallet.imported_keys})+"\n")
451                 f.close()
452                 wallet.seed = ''
453                 for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
454                 wallet.save()
455                 print_msg("Done.")
456             else:
457                 print_msg("Action canceled.")
458
459     elif cmd == 'reseed':
460         if wallet.seed:
461             print_msg("Warning: This wallet already has a seed", wallet.seed)
462         else:
463             ns = wallet.config.path + '.seed'
464             try:
465                 f = open(ns,'r')
466                 data = f.read()
467                 f.close()
468             except IOError:
469                 sys.exit("Error: Seed file not found")
470             try:
471                 import ast
472                 d = ast.literal_eval( data )
473                 seed = d['seed']
474                 imported_keys = d.get('imported_keys',{})
475             except:
476                 sys.exit("Error: Error with seed file")
477
478             mpk = wallet.master_public_key
479             wallet.seed = seed
480             wallet.imported_keys = imported_keys
481             wallet.use_encryption = False
482             wallet.init_mpk(seed)
483             if mpk == wallet.master_public_key:
484                 wallet.save()
485                 print_msg("Done: " + wallet.config.path)
486             else:
487                 print_msg("Error: Master public key does not match")
488
489     elif cmd == 'validateaddress':
490         addr = args[1]
491         print_msg(wallet.is_valid(addr))
492
493     elif cmd == 'balance':
494         try:
495             addrs = args[1:]
496         except:
497             pass
498         if addrs == []:
499             c, u = wallet.get_balance()
500             if u:
501                 print_msg(Decimal( c ) / 100000000 , Decimal( u ) / 100000000)
502             else:
503                 print_msg(Decimal( c ) / 100000000)
504         else:
505             for addr in addrs:
506                 c, u = wallet.get_addr_balance(addr)
507                 if u:
508                     print_msg("%s %s, %s" % (addr, str(Decimal(c)/100000000), str(Decimal(u)/100000000)))
509                 else:
510                     print_msg("%s %s" % (addr, str(Decimal(c)/100000000)))
511
512     elif cmd in [ 'contacts']:
513         for addr in wallet.addressbook:
514             print_msg(addr, "   ", wallet.labels.get(addr))
515
516     elif cmd == 'eval':
517         print_msg(eval(args[1]))
518         wallet.save()
519
520     elif cmd == 'get':
521         key = args[1]
522         print_msg(wallet.config.get(key))
523
524     elif cmd == 'set':
525         key, value = args[1:3]
526         if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']:
527             wallet.config.set_key(key, value, True)
528             print_msg(True)
529         else:
530             print_msg(False)
531
532     elif cmd in [ 'addresses']:
533         for addr in wallet.all_addresses():
534             if options.show_all or not wallet.is_change(addr):
535
536                 flags = wallet.get_address_flags(addr)
537                 label = wallet.labels.get(addr,'')
538                 
539                 if label: label = "\"%s\""%label
540
541                 if options.show_balance:
542                     h = wallet.history.get(addr,[])
543                     #ni = no = 0
544                     #for item in h:
545                     #    if item['is_input']:  ni += 1
546                     #    else:              no += 1
547                     b = format_satoshis(wallet.get_addr_balance(addr)[0])
548                 else: b=''
549                 m_addr = "%34s"%addr
550                 if options.show_keys:
551                     m_addr += ':' + str(wallet.get_private_key_base58(addr, password))
552                 print_msg(flags, m_addr, b, label)
553
554     if cmd == 'history':
555         import datetime
556         for item in wallet.get_tx_history():
557             tx_hash, conf, is_mine, value, fee, balance, timestamp = item
558             try:
559                 time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
560             except:
561                 time_str = "----"
562
563             label, is_default_label = wallet.get_label(tx_hash)
564             if not label: label = tx_hash
565             else: label = label + ' '*(64 - len(label) )
566
567             print_msg("%17s"%time_str, "  " + label + "  " + format_satoshis(value)+ "  "+ format_satoshis(balance))
568         print_msg("# balance: ", format_satoshis(balance))
569
570     elif cmd == 'label':
571         try:
572             tx = args[1]
573             label = ' '.join(args[2:])
574         except:
575             print_msg("Error. Syntax:  label <tx_hash> <text>")
576             sys.exit(1)
577         wallet.labels[tx] = label
578         wallet.save()
579             
580     elif cmd in ['payto', 'mktx']:
581         if from_addr and is_temporary:
582             if from_addr.find(":") == -1:
583                 keypair = from_addr + ":" + prompt_password('Private key:', False)
584             else:
585                 keypair = from_addr
586                 from_addr = keypair.split(':')[0]
587             if not wallet.import_key(keypair,password):
588                 print_msg("Error: Invalid key pair")
589                 exit(1)
590             wallet.history[from_addr] = interface.retrieve_history(from_addr)
591             wallet.update_tx_history()
592             change_addr = from_addr
593
594         if options.change_addr:
595             change_addr = options.change_addr
596
597         for k, v in wallet.labels.items():
598             if v == to_address:
599                 to_address = k
600                 print_msg("alias", to_address)
601                 break
602             if change_addr and v == change_addr:
603                 change_addr = k
604         try:
605             tx = wallet.mktx( [(to_address, amount)], label, password,
606                 fee = options.tx_fee, change_addr = change_addr, from_addr = from_addr )
607         except:
608             import traceback
609             traceback.print_exc(file=sys.stdout)
610             tx = None
611
612         if tx and cmd=='payto': 
613             r, h = wallet.sendtx( tx )
614             print_msg(h)
615         else:
616             print_msg(tx)
617
618         if is_temporary:
619             wallet.imported_keys.pop(from_addr)
620             del(wallet.history[from_addr])
621         wallet.save()
622
623     elif cmd == 'signtx':
624         import ast
625         filename = args[1]
626         f = open(filename, 'r')
627         d = ast.literal_eval(f.read())
628         f.close()
629         inputs = d['inputs']
630         outputs = d['outputs']
631         tx = wallet.signed_tx( inputs, outputs, password )
632         print_msg(tx)
633
634     elif cmd == 'sendtx':
635         tx = args[1]
636         r, h = wallet.sendtx( tx )
637         print_msg(h)
638
639     elif cmd == 'password':
640         new_password = prompt_password('New password:')
641         wallet.update_password(seed, password, new_password)
642
643     elif cmd == 'signmessage':
644         if len(args) < 3:
645             print_msg("Error: Invalid usage of signmessage.")
646             print_msg(known_commands[cmd])
647             sys.exit(1)
648         address = args[1]
649         message = ' '.join(args[2:])
650         if len(args) > 3:
651             print_msg("Warning: Message was reconstructed from several arguments:", repr(message))
652         print_msg(wallet.sign_message(address, message, password))
653
654     elif cmd == 'verifymessage':
655         try:
656             address = args[1]
657             signature = args[2]
658             message = ' '.join(args[3:])
659         except:
660             print_msg("Error: Not all parameters were given, displaying help instead.")
661             print_msg(known_commands[cmd])
662             sys.exit(1)
663         if len(args) > 4:
664             print_msg("Warning: Message was reconstructed from several arguments:", repr(message))
665         try:
666             wallet.verify_message(address, signature, message)
667             print_msg(True)
668         except BaseException as e:
669             print_error("Verification error: {0}".format(e))
670             print_msg(False)
671
672     elif cmd == 'freeze':
673         addr = args[1]
674         print_msg(wallet.freeze(addr))
675         
676     elif cmd == 'unfreeze':
677         addr = args[1]
678         print_msg(wallet.unfreeze(addr))
679
680     elif cmd == 'prioritize':
681         addr = args[1]
682         print_msg(wallet.prioritize(addr))
683
684     elif cmd == 'unprioritize':
685         addr = args[1]
686         print_msg(wallet.unprioritize(addr))
687
688
689     if cmd not in offline_commands and not options.offline:
690         synchronizer.stop()