1
0

shutdown:

- resend shutdown on reestablish
 - wait until no more pending updates before sending shutdown
This commit is contained in:
ThomasV
2020-02-26 09:04:54 +01:00
parent 9b97469598
commit 1c5dc79298
3 changed files with 17 additions and 10 deletions

View File

@@ -1276,7 +1276,7 @@ class LNWallet(LNWorker):
with self.lock:
channels = list(self.channels.values())
for chan in channels:
if chan.is_closed() or chan.is_closing():
if chan.is_closed():
continue
if constants.net is not constants.BitcoinRegtest:
chan_feerate = chan.get_latest_feerate(LOCAL)