1
0

Fix CTNs in should_be_closed_due_to_expiring_htlcs (fixes #7906).

Also fix sending too many fee updates.
Rename lnworker.on_channel_update, that name was misleading.
This commit is contained in:
ThomasV
2022-08-02 18:00:33 +02:00
parent 0c8a828704
commit a5965933d2
5 changed files with 9 additions and 9 deletions

View File

@@ -431,7 +431,7 @@ class LNWalletWatcher(LNWatcher):
closing_txid=closing_txid,
closing_height=closing_height,
keep_watching=keep_watching)
await self.lnworker.on_channel_update(chan)
await self.lnworker.handle_onchain_state(chan)
@log_exceptions
async def do_breach_remedy(self, funding_outpoint, closing_tx, spenders):