Fix low value error message

This commit is contained in:
gdvine 2017-10-05 20:06:26 +01:00 committed by GitHub
parent 13f13380d5
commit 5ce8508cd5
1 changed files with 1 additions and 1 deletions

View File

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