Skip to content

Commit

Permalink
Merge pull request spesmilo#8894 from SomberNight/202402_qetxdetails_…
Browse files Browse the repository at this point in the history
…rbf_localtx

qml: QETxDetails: defer to wallet.get_tx_info() for rbf/cpfp
  • Loading branch information
ecdsa committed Mar 15, 2024
2 parents de5ca46 + 87dd74d commit 61dc8b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions electrum/gui/qml/qetxdetails.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,10 @@ def update(self, from_txid: bool = False):
self._is_unrelated = txinfo.amount is None and self._lnamount.isEmpty
self._is_lightning_funding_tx = txinfo.is_lightning_funding_tx
self._can_broadcast = txinfo.can_broadcast
self._can_bump = txinfo.can_bump and not txinfo.can_remove
self._can_dscancel = txinfo.can_dscancel and not txinfo.can_remove
self._can_cpfp = txinfo.can_cpfp and not txinfo.can_remove
self._can_save_as_local = txinfo.can_save_as_local and not txinfo.can_remove
self._can_bump = txinfo.can_bump
self._can_dscancel = txinfo.can_dscancel
self._can_cpfp = txinfo.can_cpfp
self._can_save_as_local = txinfo.can_save_as_local
self._can_remove = txinfo.can_remove
self._can_sign = (
not self._is_complete
Expand Down

0 comments on commit 61dc8b7

Please sign in to comment.