Skip to content

Commit

Permalink
fix multicoin freezing and unfreezing
Browse files Browse the repository at this point in the history
This was broken in 5.2.0 (#256, commit 864474d). 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.
  • Loading branch information
PiRK committed May 19, 2023
1 parent 5a3d05a commit bf4db4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrumabc_gui/qt/utxo_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bf4db4a

Please sign in to comment.