tfix #2107 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 9302cea7254f08ac5bc471eb34e76d4dbbcde56a DIR parent a62dab9962c809de762530affa809ed51b20f879 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 10 Jan 2017 07:55:05 +0100 fix #2107 Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -452,7 +452,7 @@ class Abstract_Wallet(PrintError): if fee: size = tx.estimated_size() fee_per_kb = fee * 1000 / size - exp_n = self.network.reverse_dynfee(fee_per_kb) + exp_n = self.network.config.reverse_dynfee(fee_per_kb) can_bump = is_mine and not tx.is_final() else: status = _("Signed")