commit c30561d808babb36e83ce98789ee53f536037534
parent 0cf581b64aa26c82fd72fcc9efb09eddd8a1b985
Author: Amir Taaki <genjix@riseup.net>
Date: Tue, 17 Jul 2012 21:25:34 +0200
More reasonable fee calculation.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/gui_lite.py b/lib/gui_lite.py
@@ -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)