commit 086372f68aaa56bc426eba0b9087b3f4e2e1a8c2
parent 019884a98b3bf615f2f02bbbdd4512b55d765ebc
Author: SomberNight <somber.night@protonmail.com>
Date: Tue, 12 Feb 2019 19:38:15 +0100
wallet get_full_history: add from/to_height info to summary
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/electrum/wallet.py b/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),