From d83058e2e87ad783a35bc94cc4d2ab0b65cadb8c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 20 May 2016 12:25:36 +0200 Subject: [PATCH] raise the maximum imposed on dynamic fees --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 3d0f870e..81af16fb 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -911,7 +911,7 @@ class Abstract_Wallet(PrintError): b = config.get('dynamic_fees') f = config.get('fee_factor', 50) F = config.get('fee_per_kb', bitcoin.RECOMMENDED_FEE) - return min(bitcoin.RECOMMENDED_FEE, self.network.fee*(50 + f)/100) if b and self.network and self.network.fee else F + return min(10*bitcoin.RECOMMENDED_FEE, self.network.fee*(50 + f)/100) if b and self.network and self.network.fee else F def relayfee(self): RELAY_FEE = 5000