1
0

anchors: switch to zero-fee-htlcs

* sets the weight of htlc transactions to zero, thereby putting a zero
  fee for the htlc transactions
* add inputs to htlc-tx for fee bumping
* switches feature flags
* disable anchor test vectors, which are now partially invalid
This commit is contained in:
bitromortac
2021-10-15 11:08:10 +02:00
committed by ThomasV
parent d4222432f4
commit ea584e13fc
7 changed files with 107 additions and 17 deletions

View File

@@ -145,6 +145,11 @@ class NotEnoughFunds(Exception):
return _("Insufficient funds")
class UneconomicFee(Exception):
def __str__(self):
return _("The fee for the transaction is higher than the funds gained from it.")
class NoDynamicFeeEstimates(Exception):
def __str__(self):
return _('Dynamic fee estimates not available')