From bf4db4a94e85ea0630a8a798320b4ff5f00aa598 Mon Sep 17 00:00:00 2001 From: PiRK Date: Tue, 16 May 2023 08:30:32 +0200 Subject: [PATCH] fix multicoin freezing and unfreezing This was broken in 5.2.0 (#256, commit 864474d23eacb0e5d64abc18c73115613378100f). As a result, when selecting multiple coins, the Freeze and Unfreeze menu actions didn't do anything because the wallet didn't receive proper coin names. --- electrumabc_gui/qt/utxo_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrumabc_gui/qt/utxo_list.py b/electrumabc_gui/qt/utxo_list.py index 4a63877360fe..f58b530a72c7 100644 --- a/electrumabc_gui/qt/utxo_list.py +++ b/electrumabc_gui/qt/utxo_list.py @@ -415,7 +415,7 @@ def create_menu_inner( else: # multi-selection menu.addSeparator() - selected_outpoints = [coin.get_name for coin in selected_coins] + selected_outpoints = [coin.get_name() for coin in selected_coins] if any(not coin.is_frozen for coin in selected_coins): # they have some coin-level non-frozen in the selection, so add the # menu action "Freeze coins"