Browse Source
plugins/coldcard/qt.py: bugfix for API change on main_window.show_transaction
patch-1
Peter D. Gray
5 years ago
No known key found for this signature in database
GPG Key ID: F0E6CC6AFC16CF7B
1 changed files with
1 additions and
1 deletions
-
electrum/plugins/coldcard/qt.py
|
|
@ -201,7 +201,7 @@ class Plugin(ColdcardPlugin, QtPluginBase): |
|
|
|
else: |
|
|
|
desc = _("Combined from %d PSBT files") % len(psbts) |
|
|
|
|
|
|
|
window.show_transaction(tx, desc) |
|
|
|
window.show_transaction(tx, tx_desc=desc) |
|
|
|
|
|
|
|
class Coldcard_Handler(QtHandlerBase): |
|
|
|
setup_signal = pyqtSignal() |
|
|
|