URI: 
       tfix: mktx amounts - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit d8361b2a97dae0f8781944b06c71d83b9ba562eb
   DIR parent 07b9029850de076d62423245d90dbb0d78228e4d
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Sun,  3 Mar 2013 10:23:52 +0100
       
       fix: mktx amounts
       
       Diffstat:
         M lib/commands.py                     |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -231,8 +231,8 @@ class Commands:
                    if change_addr and v == change_addr:
                        change_addr = k
        
       -        amount = int(10000000*amount)
       -        if fee: fee = int(10000000*fee)
       +        amount = int(100000000*amount)
       +        if fee: fee = int(100000000*fee)
                return self.wallet.mktx( [(to_address, amount)], self.password, fee , change_addr, from_addr)