1
0

(follow-up) wallet: add option to merge duplicate tx outputs

This commit is contained in:
SomberNight
2023-10-23 19:06:42 +00:00
parent ae8a546bb9
commit 227e257444
7 changed files with 107 additions and 10 deletions

View File

@@ -731,7 +731,7 @@ class TxDialog(QDialog, MessageBoxMixin):
if not tx:
return
try:
self.tx.join_with_other_psbt(tx)
self.tx.join_with_other_psbt(tx, config=self.config)
except Exception as e:
self.show_error(_("Error joining partial transactions") + ":\n" + repr(e))
return