URI: 
       tfee - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c783d6ad3aa42c1811c7bfcd08e7ddf64a808a71
   DIR parent 76cf1fea7aecc97271433a49675e022c6543a76a
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 14 Nov 2011 20:50:42 +0100
       
       fee
       
       Diffstat:
         M client/electrum.py                  |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/client/electrum.py b/client/electrum.py
       t@@ -705,6 +705,7 @@ if __name__ == '__main__':
                    to_address = args[1]
                    amount = float(args[2])
                    label = ' '.join(args[3:])
       +            if options.tx_fee: options.tx_fee = float(options.tx_fee)
                except:
                    print "syntax: sendto <recipient> <amount> [label]"
                    sys.exit(1)
       t@@ -787,7 +788,7 @@ if __name__ == '__main__':
                        to_address = k
                        break
                    print "alias", to_address
       -        r, h = wallet.send( to_address, amount, label, password, cmd=='sendto', fee=options.tx_fee )
       +        r, h = wallet.send( to_address, amount, label, password, cmd=='sendto', fee = options.tx_fee )
                print h 
        
            elif cmd == 'newaddress':