1
0

qml: check if self._orig_tx is valid. fixes #8407

This commit is contained in:
Sander van Grieken
2023-11-20 17:13:23 +01:00
parent b098be988e
commit ff77013a82

View File

@@ -525,7 +525,7 @@ class QETxRbfFeeBumper(TxFeeSlider, TxMonMixin):
self.update()
def update(self):
if not self._txid:
if not self._txid or not self._orig_tx:
# not initialized yet
return
@@ -632,7 +632,7 @@ class QETxCanceller(TxFeeSlider, TxMonMixin):
self.update()
def update(self):
if not self._txid:
if not self._txid or not self._orig_tx:
# not initialized yet
return