commit c44f53bcaafc1f41f2c275969746794c5d0cc13f
parent 13f13380d5f75fa8c0a1ddbfdbaa93ea0c49fe30
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 5 Oct 2017 21:45:34 +0200
Merge pull request #3001 from gdvine/low-value-error-typo
Fix low value error message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -1051,7 +1051,7 @@ class Abstract_Wallet(PrintError):
if delta > 0:
continue
if delta > 0:
- raise BaseException(_('Cannot bump fee: cound not find suitable outputs'))
+ raise BaseException(_('Cannot bump fee: could not find suitable outputs'))
return Transaction.from_io(inputs, outputs)
def cpfp(self, tx, fee):