tfollow-up previous commit - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0bc777a10cfadb117fa3fa37c39a592ee1f9559c DIR parent 50587c7a24fe5df6c368dda94f920748e01eed02 HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 5 Apr 2017 09:52:52 +0200 follow-up previous commit 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@@ -901,7 +901,7 @@ class Abstract_Wallet(PrintError): fee = self.estimate_fee(config, tx.estimated_size()) if total - fee < 0: - raise BaseException(_('Not enough funds on address.') + '\nTotal: %d satoshis\nFee: %d\nDust Threshold: %d'%(total, fee)) + raise BaseException(_('Not enough funds on address.') + '\nTotal: %d satoshis\nFee: %d'%(total, fee)) if total - fee < self.dust_threshold(): raise BaseException(_('Not enough funds on address.') + '\nTotal: %d satoshis\nFee: %d\nDust Threshold: %d'%(total, fee, self.dust_threshold()))