From 5c83e8bd1cbe7ebd6ebae560f06ee65b7772a1d1 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 12 Sep 2019 08:58:58 +0200 Subject: [PATCH] follow-up 241873f0a4bcf907f5a4ae3bba087355a5f14c34 --- electrum/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/wallet.py b/electrum/wallet.py index 685d58440..e862fe2f4 100644 --- a/electrum/wallet.py +++ b/electrum/wallet.py @@ -492,7 +492,7 @@ class Abstract_Wallet(AddressSynchronizer): def get_onchain_history(self): for hist_item in self.get_history(): yield { - 'txid': hist_item.tx_mined_status, + 'txid': hist_item.txid, 'fee_sat': hist_item.fee, 'height': hist_item.tx_mined_status.height, 'confirmations': hist_item.tx_mined_status.conf,