electrum

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

commit 1a4e55a911f9c6783d5840c781f36e246c186efe
parent 8984db338404c1f4a9d8165ecced02139051b432
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 12 Mar 2021 16:38:48 +0100

follow-up 90b228de839d6474f6d23322cd2a80e1da73a254

Diffstat:
Melectrum/lnworker.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/electrum/lnworker.py b/electrum/lnworker.py @@ -821,6 +821,7 @@ class LNWallet(LNWorker): 'amount_msat': chan.balance(LOCAL, ctn=0), 'direction': 'received', 'timestamp': tx_height.timestamp, + 'fee_sat': None, 'fee_msat': None, 'height': tx_height.height, 'confirmations': tx_height.conf, @@ -839,6 +840,7 @@ class LNWallet(LNWorker): 'amount_msat': -chan.balance_minus_outgoing_htlcs(LOCAL), 'direction': 'sent', 'timestamp': tx_height.timestamp, + 'fee_sat': None, 'fee_msat': None, 'height': tx_height.height, 'confirmations': tx_height.conf,