Browse Source

wallet get_full_history: add from/to_height info to summary

sqlite_db
SomberNight 6 years ago
parent
commit
086372f68a
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/wallet.py

2
electrum/wallet.py

@ -500,6 +500,8 @@ class Abstract_Wallet(AddressSynchronizer):
summary = {
'start_date': start_date,
'end_date': end_date,
'from_height': from_height,
'to_height': to_height,
'start_balance': Satoshis(start_balance),
'end_balance': Satoshis(end_balance),
'income': Satoshis(income),

Loading…
Cancel
Save