raise the maximum imposed on dynamic fees

This commit is contained in:
ThomasV 2016-05-20 12:25:36 +02:00
parent edb145e66a
commit d83058e2e8
1 changed files with 1 additions and 1 deletions

View File

@ -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