follow-up previous commit

This commit is contained in:
ThomasV 2017-04-05 09:52:52 +02:00
parent 50587c7a24
commit 0bc777a10c
1 changed files with 1 additions and 1 deletions

View File

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