URI: 
       tfix - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0eaa894aeecfef742fdda625ceb7edb7925e0a4c
   DIR parent 671a73d02b7d195a7c568a4c02c3e10a130a4135
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Sun, 15 Sep 2013 16:22:58 +0200
       
       fix
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1162,7 +1162,7 @@ class Wallet:
        
            def mktx_from_account(self, outputs, password, fee=None, change_addr=None, account=None):
                domain = self.get_account_addresses(account) if account else None
       -        self.mktx(outputs, password, fee, change_addr, domain)
       +        return self.mktx(outputs, password, fee, change_addr, domain)
        
        
            def mktx(self, outputs, password, fee=None, change_addr=None, domain= None ):