Browse Source

qml TxDetails: txid must be updated after rawtx is changed

refresh bug when using bump_fee/dscancel/etc
master
SomberNight 3 years ago
parent
commit
75a9a4fce9
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 1
      electrum/gui/qml/qetxdetails.py

1
electrum/gui/qml/qetxdetails.py

@ -114,6 +114,7 @@ class QETxDetails(QObject, QtEventListener):
try:
self._tx = tx_from_any(rawtx, deserialize=True)
self._txid = self._tx.txid()
self.txidChanged.emit()
self.update()
except Exception as e:
self._tx = None

Loading…
Cancel
Save