tMore reasonable fee calculation. - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit c30561d808babb36e83ce98789ee53f536037534
 (DIR) parent 0cf581b64aa26c82fd72fcc9efb09eddd8a1b985
 (HTM) Author: Amir Taaki <genjix@riseup.net>
       Date:   Tue, 17 Jul 2012 21:25:34 +0200
       
       More reasonable fee calculation.
       
       Diffstat:
         M lib/gui_lite.py                     |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/lib/gui_lite.py b/lib/gui_lite.py
       t@@ -511,8 +511,8 @@ class MiniActuator:
                fee = 0
                # 0.1 BTC = 10000000
                if amount < bitcoin(1) / 10:
       -            # 0.01 BTC
       -            fee = bitcoin(1) / 100
       +            # 0.001 BTC
       +            fee = bitcoin(1) / 1000
        
                try:
                    tx = self.wallet.mktx(dest_address, amount, "", password, fee)