lower default fee. fixes #403
authorThomasV <thomasv@gitorious>
Wed, 23 Apr 2014 14:10:01 +0000 (16:10 +0200)
committerThomasV <thomasv@gitorious>
Wed, 23 Apr 2014 14:10:01 +0000 (16:10 +0200)
lib/wallet.py

index 2da22fe..bad6944 100644 (file)
@@ -177,7 +177,7 @@ class NewWallet:
         self.imported_keys         = storage.get('imported_keys',{})
         self.history               = storage.get('addr_history',{})        # address -> list(txid, height)
 
-        self.fee                   = int(storage.get('fee_per_kb',20000))
+        self.fee                   = int(storage.get('fee_per_kb', 10000))
 
         self.master_public_keys = storage.get('master_public_keys',{})
         self.master_private_keys = storage.get('master_private_keys', {})