electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 11f1541cdd6ba56388b97b5cc23d589fc9a687bc
parent 3a2fe806759d1a476a94a8167f4226e3d017ba28
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 13 Dec 2019 11:08:25 +0100

lnworker: save timestamp regardless of channel state

Diffstat:
Melectrum/lnworker.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/electrum/lnworker.py b/electrum/lnworker.py @@ -661,6 +661,10 @@ class LNWallet(LNWorker): chan = self.channel_by_txo(funding_outpoint) if not chan: return + + # save timestamp regardless of state, so that funding tx is returned in get_history + self.channel_timestamps[bh2u(chan.channel_id)] = chan.funding_outpoint.txid, funding_height.height, funding_height.timestamp, None, None, None + if chan.get_state() == channel_states.OPEN and self.should_channel_be_closed_due_to_expiring_htlcs(chan): self.logger.info(f"force-closing due to expiring htlcs") await self.force_close_channel(chan.channel_id) @@ -671,7 +675,6 @@ class LNWallet(LNWorker): self.save_short_chan_id(chan) if chan.short_channel_id: chan.set_state(channel_states.FUNDED) - self.channel_timestamps[bh2u(chan.channel_id)] = chan.funding_outpoint.txid, funding_height.height, funding_height.timestamp, None, None, None self.storage.put('lightning_channel_timestamps', self.channel_timestamps) if chan.get_state() == channel_states.FUNDED: