mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
Merge pull request #3001 from gdvine/low-value-error-typo
Fix low value error message
This commit is contained in:
commit
c44f53bcaa
1 changed files with 1 additions and 1 deletions
|
@ -1051,7 +1051,7 @@ class Abstract_Wallet(PrintError):
|
||||||
if delta > 0:
|
if delta > 0:
|
||||||
continue
|
continue
|
||||||
if delta > 0:
|
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)
|
return Transaction.from_io(inputs, outputs)
|
||||||
|
|
||||||
def cpfp(self, tx, fee):
|
def cpfp(self, tx, fee):
|
||||||
|
|
Loading…
Add table
Reference in a new issue