From 6ddd0b95cacbd64e025b68dd91b43f1ed8fff73e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 13 Feb 2025 10:54:46 +0100 Subject: [PATCH] workaround grouping bug with dummy values --- electrum/wallet.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electrum/wallet.py b/electrum/wallet.py index 921737c62..f3c58de14 100644 --- a/electrum/wallet.py +++ b/electrum/wallet.py @@ -1408,6 +1408,10 @@ class Abstract_Wallet(ABC, Logger, EventListener): 'timestamp': 0, 'date': timestamp_to_datetime(0), 'fee_sat': 0, + # fixme: there is no guarantee that there will be an onchain tx in the group + 'height': 0, + 'confirmations': 0, + 'txid': '----', } transactions[key] = parent if 'bc_value' in tx_item: