Browse Source

Merge pull request #3001 from gdvine/low-value-error-typo

Fix low value error message
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
c44f53bcaa
  1. 2
      lib/wallet.py

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

Loading…
Cancel
Save