From 086372f68aaa56bc426eba0b9087b3f4e2e1a8c2 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 12 Feb 2019 19:38:15 +0100 Subject: [PATCH] wallet get_full_history: add from/to_height info to summary --- electrum/wallet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/wallet.py b/electrum/wallet.py index b1cac408d..fe3877c24 100644 --- 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),