diff --git a/electrum/lnworker.py b/electrum/lnworker.py index 244a3dcc4..8a7f42f39 100644 --- a/electrum/lnworker.py +++ b/electrum/lnworker.py @@ -855,6 +855,7 @@ class LNWallet(LNWorker): 'amount_msat': chan.balance(LOCAL, ctn=0), 'direction': 'received', 'timestamp': tx_height.timestamp, + 'date': timestamp_to_datetime(tx_height.timestamp), 'fee_sat': None, 'fee_msat': None, 'height': tx_height.height, @@ -874,6 +875,7 @@ class LNWallet(LNWorker): 'amount_msat': -chan.balance_minus_outgoing_htlcs(LOCAL), 'direction': 'sent', 'timestamp': tx_height.timestamp, + 'date': timestamp_to_datetime(tx_height.timestamp), 'fee_sat': None, 'fee_msat': None, 'height': tx_height.height,