tfollow-up 17a893441a88eb1b3bc89fd960edfc28140e266f: satoshis - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 8480989fb7ec824f87553458d1b5fb2d7c43af08
DIR parent eaf481022098e7edda8217815e6533c041bd69a4
HTML Author: ThomasV <thomasv@electrum.org>
Date: Fri, 6 Mar 2020 10:07:36 +0100
follow-up 17a893441a88eb1b3bc89fd960edfc28140e266f: satoshis
Diffstat:
M electrum/commands.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/electrum/commands.py b/electrum/commands.py
t@@ -1004,8 +1004,8 @@ class Commands:
'remote_balance': chan.balance(REMOTE)//1000,
'local_reserve': chan.config[LOCAL].reserve_sat,
'remote_reserve': chan.config[REMOTE].reserve_sat,
- 'local_unsettled_sent': chan.unsettled_sent_balance(LOCAL),
- 'remote_unsettled_sent': chan.unsettled_sent_balance(REMOTE),
+ 'local_unsettled_sent': chan.unsettled_sent_balance(LOCAL)//1000,
+ 'remote_unsettled_sent': chan.unsettled_sent_balance(REMOTE)//1000,
} for channel_id, chan in l
]