From fe4ca4c466e69e7f81d2c56405f3754c3e26077f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 18 Feb 2020 20:06:35 +0100 Subject: [PATCH] follow-up previous commit --- electrum/lnwatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py index aa4cb1ee6..1a5e4b27d 100644 --- a/electrum/lnwatcher.py +++ b/electrum/lnwatcher.py @@ -336,7 +336,7 @@ class LNWalletWatcher(LNWatcher): if not chan: return if funding_height.height == TX_HEIGHT_LOCAL: - self.lnworker.channel_timestamps.pop(bh2u(chan.channel_id)) + self.lnworker.channel_timestamps.pop(bh2u(chan.channel_id), None) return elif closing_height.height == TX_HEIGHT_LOCAL: await self.lnworker.update_open_channel(chan, funding_txid, funding_height)