electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit d83058e2e87ad783a35bc94cc4d2ab0b65cadb8c
parent edb145e66abd9745ac0d899348d98299f086a52a
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 20 May 2016 12:25:36 +0200

raise the maximum imposed on dynamic fees

Diffstat:
Mlib/wallet.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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