URI: 
       tfee is an int - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 72aefa7c1600845c4703bc8c615703b664fb22c5
   DIR parent 29ff2e21340ec2922485732efb113efa1baeb25a
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Tue,  6 Dec 2011 22:28:05 +0100
       
       fee is an int
       
       Diffstat:
         M client/electrum.py                  |       7 ++++---
       
       1 file changed, 4 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/client/electrum.py b/client/electrum.py
       t@@ -225,7 +225,7 @@ class Wallet:
                self.gap_limit = 5           # configuration
                self.host = 'ecdsa.org'
                self.port = 50000
       -        self.fee = 0.005
       +        self.fee = 50000
                self.version = WALLET_VERSION
                self.servers = ['ecdsa.org','electrum.novit.ro']  # list of default servers
        
       t@@ -383,12 +383,13 @@ class Wallet:
                     self.seed, self.addresses, self.private_keys, 
                     self.change_addresses, self.status, self.history, 
                     self.labels, self.addressbook) = sequence
       +            self.fee = int(self.fee)
                except:
                    # it is safer to exit immediately
                    print "Error; could not parse wallet."
                    exit(1)
                if self.version != WALLET_VERSION:
       -            raise BaseException("Wallet version error.\nPlease move your balance to a new wallet.\nSee the release notes for more informations.")
       +            raise BaseException("Wallet version error.\nPlease move your balance to a new wallet.\nSee the release notes for more information.")
                self.update_tx_history()
                return True
                
       t@@ -610,7 +611,7 @@ class Wallet:
            def mktx(self, to_address, amount, label, password, fee=None):
                if not self.is_valid(to_address):
                    return False, "Invalid address"
       -        if fee is None: fee = int( self.fee )
       +        if fee is None: fee = self.fee
                try:
                    inputs, outputs = wallet.choose_inputs_outputs( to_address, amount, fee, password )
                    if not inputs: