From 5ce8508cd539f86017c157f679be2f32f3daea91 Mon Sep 17 00:00:00 2001 From: gdvine Date: Thu, 5 Oct 2017 20:06:26 +0100 Subject: [PATCH] Fix low value error message --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 38551434..34d2e2a8 100644 --- 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):