ThomasV 3 years ago
parent
commit
a1716df115
  1. 2
      electrum/gui/qt/utxo_list.py

2
electrum/gui/qt/utxo_list.py

@ -170,7 +170,7 @@ class UTXOList(MyTreeView):
self.selectionModel().clearSelection()
def get_spend_list(self) -> Optional[Sequence[PartialTxInput]]:
if bool(self._spend_set):
if not bool(self._spend_set):
return None
utxos = [self._utxo_dict[x] for x in self._spend_set]
return copy.deepcopy(utxos) # copy so that side-effects don't affect utxo_dict

Loading…
Cancel
Save