use named callbacks with the interface
[electrum-nvc.git] / electrum
index a975cb2..792cbb2 100755 (executable)
--- a/electrum
+++ b/electrum
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-import re, sys, getpass
+import re
+import sys
+import optparse
+
+try:
+    from lib.util import print_error
+except ImportError:
+    from electrum.util import print_error
+
+try:
+    import ecdsa  
+except ImportError:
+    sys.exit("Error: python-ecdsa does not seem to be installed. Try 'sudo pip install ecdsa'")
+
+try:
+    import aes
+except ImportError:
+    sys.exit("Error: AES does not seem to be installed. Try 'sudo pip install slowaes'")
+
+try:
+    from lib import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
+except ImportError:
+    from electrum import Wallet, Interface, WalletSynchronizer, WalletVerifier, format_satoshis, mnemonic, SimpleConfig, pick_random_server
 
-import electrum
-from optparse import OptionParser
 from decimal import Decimal
 
-from electrum import Wallet, SecretToASecret, WalletSynchronizer, format_satoshis
+known_commands = {
+    'help':'Prints this help',
+    'validateaddress':'Check that the address is valid', 
+    'balance': "Display the balance of your wallet or of an address.\nSyntax: balance [<address>]", 
+    'contacts': "Show your list of contacts", 
+    'create':'Create a wallet', 
+    'restore':'Restore a wallet', 
+    'payto':"""Create and broadcast a transaction.
+Syntax: payto <recipient> <amount> [label]
+<recipient> can be a bitcoin address or a label
+options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
+            """,
+    'sendtx':
+            'Broadcasts a transaction to the network. \nSyntax: sendtx <tx>\n<tx> must be in hexadecimal.',
+    'password': 
+            "Changes your password",
+    'addresses':  
+            """Shows your list of addresses.
+options:
+  -a: show all addresses, including change addresses
+  -k: show private keys
+  -b: show the balance of addresses""",
+
+    'history':"Shows the transaction history",
+    'label':'Assign a label to an item\nSyntax: label <tx_hash> <label>',
+    'mktx':
+        """Create a signed transaction, password protected.
+Syntax: mktx <recipient> <amount> [label]
+options:\n  --fee, -f: set transaction fee\n  --fromaddr, -s: send from address -\n  --changeaddr, -c: send change to address
+        """,
+    'seed':
+            "Print the generation seed of your wallet.",
+    'import': 
+            'Imports a key pair\nSyntax: import <address>:<privatekey>',
+    'signmessage':
+            '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 "',
+    'verifymessage':
+             '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 "',
+    'eval':  
+             "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\"",
+    'set': 
+             "Set wallet parameter. (gui)",
+    'deseed':
+            "Remove seed from the wallet. The seed is stored in a file that has the name of the wallet plus '.seed'",
+    'reseed':
+            "Restore seed of the wallet. The wallet must have no seed, and the seed must match the wallet's master public key.",
+    'freeze':'',
+    'unfreeze':'',
+    'prioritize':'',
+    'unprioritize':'',
+    }
+
+
+
+offline_commands = [ 'password', 'mktx',
+                     'label', 'contacts',
+                     'help', 'validateaddress',
+                     'signmessage', 'verifymessage',
+                     'eval', 'set', 'create', 'addresses',
+                     'import', 'seed',
+                     'deseed','reseed',
+                     'freeze','unfreeze',
+                     'prioritize','unprioritize']
+
 
-known_commands = ['help', 'validateaddress', 'balance', 'contacts', 'create', 'restore', 'payto', 'sendtx', 'password', 'addresses', 'history', 'label', 'mktx','seed','import','signmessage','verifymessage','eval','deseed','reseed']
-offline_commands = ['password', 'mktx', 'history', 'label', 'contacts', 'help', 'validateaddress', 'signmessage', 'verifymessage', 'eval', 'create', 'addresses', 'import', 'seed','deseed','reseed']
 protected_commands = ['payto', 'password', 'mktx', 'seed', 'import','signmessage' ]
 
+# get password routine
+def prompt_password(prompt, confirm=True):
+    import getpass
+    if sys.stdin.isatty():
+        password = getpass.getpass(prompt)
+        if password and confirm:
+            password2 = getpass.getpass("Confirm: ")
+            if password != password2:
+                sys.exit("Error: Passwords do not match.")
+    else:
+        password = raw_input(prompt)
+    if not password:
+        password = None
+    return password
+
+
+
 if __name__ == '__main__':
 
-    usage = "usage: %prog [options] command args\nCommands: "+ (', '.join(known_commands))
-    parser = OptionParser(usage=usage)
-    parser.add_option("-g", "--gui", dest="gui", default="qt", help="gui")
+    usage = "usage: %prog [options] command\nCommands: "+ (', '.join(known_commands))
+    parser = optparse.OptionParser(prog=usage)
+    parser.add_option("-g", "--gui", dest="gui", help="User interface: qt, lite, gtk or text")
     parser.add_option("-w", "--wallet", dest="wallet_path", help="wallet path (default: electrum.dat)")
+    parser.add_option("-o", "--offline", action="store_true", dest="offline", default=False, help="remain offline")
     parser.add_option("-a", "--all", action="store_true", dest="show_all", default=False, help="show all addresses")
     parser.add_option("-b", "--balance", action="store_true", dest="show_balance", default=False, help="show the balance at listed addresses")
     parser.add_option("-k", "--keys",action="store_true", dest="show_keys",default=False, help="show the private keys of listed addresses")
     parser.add_option("-f", "--fee", dest="tx_fee", default="0.005", help="set tx fee")
-    parser.add_option("-s", "--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.")
+    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.")
     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")
-    parser.add_option("-r", "--remote", dest="remote_url", default=None, help="URL of a remote wallet")
+    parser.add_option("-s", "--server", dest="server", default=None, help="set server host:port:protocol, where protocol is t or h")
+    parser.add_option("-p", "--proxy", dest="proxy", default=None, help="set proxy [type:]host[:port], where type is socks4,socks5 or http")
     options, args = parser.parse_args()
 
-    wallet = Wallet()
-    wallet.set_path(options.wallet_path)
-    wallet.read()
-    wallet.remote_url = options.remote_url
+    # config is an object passed to the various constructors (wallet, interface, gui)
+    config = SimpleConfig(options)
+    wallet = Wallet(config)
 
     if len(args)==0:
         url = None
@@ -57,21 +156,45 @@ if __name__ == '__main__':
     else:
         cmd = args[0]
         firstarg = args[1] if len(args) > 1 else ''
-        
+       
+    #this entire if/else block is just concerned with importing the 
+    #right GUI toolkit based the GUI command line option given 
     if cmd == 'gui':
-        if options.gui=='gtk':
-            import electrum.gui as gui
-        elif options.gui=='qt':
-            import electrum.gui_qt as gui
+        pref_gui = config.get('gui','classic')
+        if pref_gui == 'gtk':
+            try:
+                import lib.gui as gui
+            except ImportError:
+                import electrum.gui as gui
+        elif pref_gui in ['classic', 'qt']:
+            try:
+                import lib.gui_qt as gui
+            except ImportError:
+                import electrum.gui_qt as gui
+        elif pref_gui == 'lite':
+              try:
+                  import lib.gui_lite as gui
+              except ImportError:
+                  import electrum.gui_lite as gui
+        elif pref_gui == 'text':
+              try:
+                  import lib.gui_text as gui
+              except ImportError:
+                  import electrum.gui_text as gui
         else:
-            print "unknown gui", options.gui
-            exit(1)
+            sys.exit("Error: Unknown GUI: " + pref_gui )
+
+        gui = gui.ElectrumGui(wallet, config)
+        interface = Interface(config, True)
+        interface.register_callback('peers', gui.server_list_changed)
+        interface.start()
+        wallet.interface = interface
 
-        gui = gui.ElectrumGui(wallet)
-        WalletSynchronizer(wallet,True).start()
+        WalletSynchronizer(wallet, config).start()
+        WalletVerifier(wallet, config).start()
 
         try:
-            found = wallet.file_exists
+            found = config.wallet_file_exists
             if not found:
                 found = gui.restore_or_create()
         except SystemExit, e:
@@ -82,8 +205,8 @@ if __name__ == '__main__':
             #gui.show_message(e.message)
             exit(1)
 
-        if not found: exit(1)
-
+        if not found:
+            exit(1)
         gui.main(url)
         wallet.save()
         sys.exit(0)
@@ -91,26 +214,19 @@ if __name__ == '__main__':
     if cmd not in known_commands:
         cmd = 'help'
 
-    if not wallet.file_exists and cmd not in ['help','create','restore']:
-        print "Wallet file not found."
+    if not config.wallet_file_exists and cmd not in ['help','create','restore']:
+        print "Error: Wallet file not found."
         print "Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option"
         sys.exit(0)
     
     if cmd in ['create', 'restore']:
-        from electrum import mnemonic
-        if wallet.file_exists:
-            print "remove the existing wallet first!"
-            sys.exit(0)
-        password = getpass.getpass("Password (hit return if you do not wish to encrypt your wallet):")
-        if password:
-            password2 = getpass.getpass("Confirm password:")
-            if password != password2:
-                print "error"
-                sys.exit(1)
-        else:
-            password = None
+        if config.wallet_file_exists:
+            sys.exit("Error: Remove the existing wallet first!")
+        password = prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
 
-        w_host, w_port, w_protocol = wallet.server.split(':')
+        server = config.get('server')
+        if not server: server = pick_random_server()
+        w_host, w_port, w_protocol = server.split(':')
         host = raw_input("server (default:%s):"%w_host)
         port = raw_input("port (default:%s):"%w_port)
         protocol = raw_input("protocol [t=tcp;h=http;n=native] (default:%s):"%w_protocol)
@@ -119,7 +235,7 @@ if __name__ == '__main__':
         if host: w_host = host
         if port: w_port = port
         if protocol: w_protocol = protocol
-        wallet.server = w_host + ':' + w_port + ':' +w_protocol
+        wallet.config.set_key('server', w_host + ':' + w_port + ':' +w_protocol)
         if fee: wallet.fee = float(fee)
         if gap: wallet.gap_limit = int(gap)
 
@@ -128,25 +244,28 @@ if __name__ == '__main__':
             try:
                 seed.decode('hex')
             except:
-                print "not hex, trying decode"
+                print_error("Warning: Not hex, trying decode.")
                 seed = mnemonic.mn_decode( seed.split(' ') )
             if not seed:
-                print "no seed"
-                sys.exit(1)
+                sys.exit("Error: No seed")
 
             wallet.seed = str(seed)
-            WalletSynchronizer(wallet).start()
-            print "recovering wallet..."
             wallet.init_mpk( wallet.seed )
-            wallet.up_to_date_event.clear()
-            wallet.up_to_date = False
-            wallet.update()
-            if wallet.is_found():
-                wallet.fill_addressbook()
-                wallet.save()
-                print "recovery successful"
+            if not options.offline:
+                WalletSynchronizer(wallet, config).start()
+                print "Recovering wallet..."
+                wallet.up_to_date_event.clear()
+                wallet.up_to_date = False
+                wallet.update()
+                if wallet.is_found():
+                    print "Recovery successful"
+                else:
+                    print_error("Warning: Found no history for this wallet")
             else:
-                print "found no history for this wallet"
+                wallet.synchronize()
+            wallet.fill_addressbook()
+            wallet.save()
+            print_error("Wallet saved in '" + wallet.path)
         else:
             wallet.new_seed(None)
             wallet.init_mpk( wallet.seed )
@@ -156,6 +275,10 @@ if __name__ == '__main__':
             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 "Wallet saved in '%s'"%wallet.config.path
+            
+        if password:
+            wallet.update_password(wallet.seed, None, password)
 
     # check syntax
     if cmd in ['payto', 'mktx']:
@@ -171,8 +294,12 @@ if __name__ == '__main__':
             cmd = 'help'
 
     # open session
-    if cmd not in offline_commands:
-        WalletSynchronizer(wallet).start()
+    if cmd not in offline_commands and not options.offline:
+        interface = Interface(config)
+        interface.register_callback('connected', lambda: print_error("Connected to " + interface.connection_msg))
+        interface.start()
+        wallet.interface = interface
+        WalletSynchronizer(wallet, config).start()
         wallet.update()
         wallet.save()
 
@@ -184,110 +311,97 @@ if __name__ == '__main__':
         if from_addr not in wallet.all_addresses():
             is_temporary = True
                 
+    # important warning
+    if cmd=='addresses' and options.show_keys:
+        print "WARNING: ALL your private keys are secret."
+        print "Exposing a single private key can compromise your entire wallet!"
+        print "In particular, DO NOT use 'redeem private key' services proposed by third parties."
+
     # commands needing password
     if cmd in protected_commands or ( cmd=='addresses' and options.show_keys):
-        password = getpass.getpass('Password:') if wallet.use_encryption and not is_temporary else None
+        password = prompt_password('Password:', False) if wallet.use_encryption and not is_temporary else None
         # check password
         try:
             wallet.pw_decode( wallet.seed, password)
         except:
-            print "invalid password"
+            print_error("Error: This password does not decode this wallet.")
             exit(1)
 
     if cmd == 'import':
-        keypair = args[1]
-        if wallet.import_key(keypair,password):
-            print "keypair imported"
+        # See if they specificed a key on the cmd line, if not prompt
+        if len(args) > 1:
+            keypair = args[1]
         else:
-            print "error"
-        wallet.save()
+            keypair = prompt_password('Enter Address:PrivateKey (will not echo):', False)
+        try:
+            wallet.import_key(keypair,password)
+            wallet.save()
+            print "Keypair imported"
+        except BaseException, e:
+            print_error("Error: Keypair import failed: " + str(e))
 
-    if cmd=='help':
+    if cmd == 'help':
         cmd2 = firstarg
         if cmd2 not in known_commands:
-            print "known commands:", ', '.join(known_commands)
-            print "'electrum help <command>' shows the help on a specific command"
-            print "'electrum --help' shows the list of options"
-        elif cmd2 == 'balance':
-            print "Display the balance of your wallet or a specific address. The address does not have to be a owned address (you know the private key)."
-            print "syntax: balance [<address>]"
-        elif cmd2 == 'contacts':
-            print "show your list of contacts"
-        elif cmd2 == 'payto':
-            print "payto <recipient> <amount> [label]"
-            print "create and broadcast a transaction."
-            print "<recipient> can be a bitcoin address or a label"
-            print "options: --fee, --fromaddr, --changeaddr"
-        elif cmd2== 'sendtx':
-            print "sendtx <tx>"
-            print "broadcast a transaction to the network. <tx> must be in hexadecimal"
-        elif cmd2 == 'password':
-            print "change your password"
-        elif cmd2 == 'addresses':
-            print "show your list of addresses. options: -a, -k, -b"
-        elif cmd2 == 'history':
-            print "show the transaction history"
-        elif cmd2 == 'label':
-            print "assign a label to an item"
-        elif cmd2 == 'gtk':
-            print "start the GUI"
-        elif cmd2 == 'mktx':
-            print "create a signed transaction. password protected"
-            print "syntax: mktx <recipient> <amount> [label]"
-            print "options: --fee, --fromaddr, --changeaddr"
-        elif cmd2 == 'seed':
-            print "show generation seed of your wallet. password protected."
-        elif cmd2 == 'deseed':
-            print "remove the seed of your wallet."
-        elif cmd2 == 'eval':
-            print "Run python eval() on an object\nSyntax: eval <expression>\nExample: eval \"wallet.aliases\""
+            parser.print_help()
+            print "Type 'electrum help <command>' to see the help for a specific command"
+            print "Type 'electrum --help' to see the list of options"
+            print "List of commands:", ', '.join(known_commands)
+        else:
+            print known_commands[cmd2]
 
     elif cmd == 'seed':
-        from electrum import mnemonic
         seed = wallet.pw_decode( wallet.seed, password)
-        print seed, '"'+' '.join(mnemonic.mn_encode(seed))+'"'
+        print seed + ' "' + ' '.join(mnemonic.mn_encode(seed)) + '"'
 
     elif cmd == 'deseed':
         if not wallet.seed:
-            print "Eooro: This wallet has no seed"
+            print_error("Error: This wallet has no seed")
         elif wallet.use_encryption:
-            print "Error: This wallet is encrypted"
+            print_error("Error: This wallet is encrypted")
         else:
-            ns = options.wallet_path+'.seed'
-            print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(options.wallet_path,ns)
+            ns = wallet.path + '.seed'
+            print "Warning: you are going to extract the seed from '%s'\nThe seed will be saved in '%s'"%(wallet.path,ns)
             if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']:
                 f = open(ns,'w')
-                f.write(wallet.seed)
+                f.write(repr({'seed':wallet.seed, 'imported_keys':wallet.imported_keys})+"\n")
                 f.close()
                 wallet.seed = ''
+                for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = ''
                 wallet.save()
                 print "Done."
             else:
-                print "Action canceled."
+                print_error("Action canceled.")
 
     elif cmd == 'reseed':
         if wallet.seed:
-            print "This wallet already has a seed"
+            print "Warning: This wallet already has a seed", wallet.seed
         else:
-            ns = options.wallet_path+'.seed'
+            ns = wallet.path + '.seed'
             try:
                 f = open(ns,'r')
-                seed = f.read()
+                data = f.read()
                 f.close()
+            except IOError:
+                sys.exit("Error: Seed file not found")
+            try:
+                import ast
+                d = ast.literal_eval( data )
+                seed = d['seed']
+                imported_keys = d.get('imported_keys',{})
             except:
-                print "seed file not found"
-                sys.exit()
+                sys.exit("Error: Error with seed file")
 
             mpk = wallet.master_public_key
             wallet.seed = seed
+            wallet.imported_keys = imported_keys
             wallet.use_encryption = False
             wallet.init_mpk(seed)
             if mpk == wallet.master_public_key:
                 wallet.save()
-                print "done"
+                print "Done: " + wallet.path
             else:
-                print "error: master public key does not match"
-
+                print_error("Error: Master public key does not match")
 
     elif cmd == 'validateaddress':
         addr = args[1]
@@ -320,26 +434,35 @@ if __name__ == '__main__':
         print eval(args[1])
         wallet.save()
 
+    elif cmd == 'set':
+        key, value = args[1:3]
+        if key in ['gui', 'server', 'proxy', 'fee', 'gap_limit', 'use_change']:
+            wallet.config.set_key(key, value, True)
+            print True
+        else:
+            print False
+
     elif cmd in [ 'addresses']:
         for addr in wallet.all_addresses():
             if options.show_all or not wallet.is_change(addr):
-                label = wallet.labels.get(addr)
-                _type = ''
-                if wallet.is_change(addr): _type = "[change]"
-                if addr in wallet.imported_keys.keys(): _type = "[imported]"
-                if label is None: label = ''
+
+                flags = wallet.get_address_flags(addr)
+                label = wallet.labels.get(addr,'')
+                
+                if label: label = "\"%s\""%label
+
                 if options.show_balance:
                     h = wallet.history.get(addr,[])
-                    ni = no = 0
-                    for item in h:
-                        if item['is_input']:  ni += 1
-                        else:              no += 1
-                    b = "%d %d %s"%(no, ni, str(Decimal(wallet.get_addr_balance(addr)[0])/100000000))
+                    #ni = no = 0
+                    #for item in h:
+                    #    if item['is_input']:  ni += 1
+                    #    else:              no += 1
+                    b = format_satoshis(wallet.get_addr_balance(addr)[0])
                 else: b=''
+                m_addr = "%34s"%addr
                 if options.show_keys:
-                    pk = wallet.get_private_key(addr, password)
-                    addr = addr + ':' + SecretToASecret(pk)
-                print addr, b, _type, label
+                    m_addr += ':' + str(wallet.get_private_key_base58(addr, password))
+                print flags, m_addr, b, label
 
     if cmd == 'history':
         lines = wallet.get_tx_history()
@@ -365,7 +488,7 @@ if __name__ == '__main__':
             tx = args[1]
             label = ' '.join(args[2:])
         except:
-            print "syntax:  label <tx_hash> <text>"
+            print_error("Error. Syntax:  label <tx_hash> <text>")
             sys.exit(1)
         wallet.labels[tx] = label
         wallet.save()
@@ -373,12 +496,12 @@ if __name__ == '__main__':
     elif cmd in ['payto', 'mktx']:
         if from_addr and is_temporary:
             if from_addr.find(":") == -1:
-                keypair = from_addr + ":" + getpass.getpass('Private key:')
+                keypair = from_addr + ":" + prompt_password('Private key:', False)
             else:
                 keypair = from_addr
                 from_addr = keypair.split(':')[0]
             if not wallet.import_key(keypair,password):
-                print "invalid key pair"
+                print_error("Error: Invalid key pair")
                 exit(1)
             wallet.history[from_addr] = interface.retrieve_history(from_addr)
             wallet.update_tx_history()
@@ -421,32 +544,54 @@ if __name__ == '__main__':
     elif cmd == 'password':
         try:
             seed = wallet.pw_decode( wallet.seed, password)
-        except:
-            print "sorry"
-            sys.exit(1)
-        new_password = getpass.getpass('New password:')
-        if new_password == getpass.getpass('Confirm new password:'):
-            wallet.use_encryption = (new_password != '')
-            wallet.seed = wallet.pw_encode( seed, new_password)
-            for k in wallet.imported_keys.keys():
-                a = wallet.imported_keys[k]
-                b = wallet.pw_decode(a, password)
-                c = wallet.pw_encode(b, new_password)
-                wallet.imported_keys[k] = c
-            wallet.save()
-        else:
-            print "error: mismatch"
+        except ValueError:
+            sys.exit("Error: Password does not decrypt this wallet.")
+
+        new_password = prompt_password('New password:')
+        wallet.update_password(seed, password, new_password)
 
     elif cmd == 'signmessage':
-        address, message = args[1:3]
+        if len(args) < 3:
+            print_error("Error: Invalid usage of signmessage.")
+            print known_commands[cmd]
+            sys.exit(1)
+        address = args[1]
+        message = ' '.join(args[2:])
+        if len(args) > 3:
+            print "Warning: Message was reconstructed from several arguments:", repr(message)
         print wallet.sign_message(address, message, password)
 
     elif cmd == 'verifymessage':
-        address, signature, message = args[1:4]
+        try:
+            address = args[1]
+            signature = args[2]
+            message = ' '.join(args[3:])
+        except:
+            print_error("Error: Not all parameters were given, displaying help instead.")
+            print known_commands[cmd]
+            sys.exit(1)
+        if len(args) > 4:
+            print "Warning: Message was reconstructed from several arguments:", repr(message)
         try:
             wallet.verify_message(address, signature, message)
             print True
-        except:
+        except BaseException as e:
+            print "Verification error: {0}".format(e)
             print False
+
+    elif cmd == 'freeze':
+        addr = args[1]
+        print wallet.freeze(addr)
         
+    elif cmd == 'unfreeze':
+        addr = args[1]
+        print wallet.unfreeze(addr)
+
+    elif cmd == 'prioritize':
+        addr = args[1]
+        print wallet.prioritize(addr)
+
+    elif cmd == 'unprioritize':
+        addr = args[1]
+        print wallet.unprioritize(addr)