1
0

qml: fix crashes on tx finalizing

This commit is contained in:
Sander van Grieken
2022-10-04 21:47:28 +02:00
parent 2118eb57bd
commit 090706bfd6
3 changed files with 4 additions and 4 deletions

View File

@@ -407,7 +407,7 @@ class QEWallet(AuthMixin, QObject, QtEventListener):
@auth_protect
def sign(self, tx, *, broadcast: bool = False):
tx = self.wallet.sign_transaction(tx, None)
tx = self.wallet.sign_transaction(tx, self.password)
if tx is None:
self._logger.info('did not sign')