Browse Source
wallet get_full_history: add from/to_height info to summary
sqlite_db
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
0 deletions
-
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), |
|
|
|