Browse Source

follow-up 17a893441a88eb1b3bc89fd960edfc28140e266f: satoshis

hard-fail-on-bad-server-string
ThomasV 5 years ago
parent
commit
8480989fb7
  1. 4
      electrum/commands.py

4
electrum/commands.py

@ -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
]

Loading…
Cancel
Save