Browse Source
qt main_window: (trivial) fix error-handling for open_channel
fixes #6776
patch-4
SomberNight
4 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/main_window.py
|
@ -1769,7 +1769,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): |
|
|
try: |
|
|
try: |
|
|
extract_nodeid(connect_str) |
|
|
extract_nodeid(connect_str) |
|
|
except ConnStringFormatError as e: |
|
|
except ConnStringFormatError as e: |
|
|
self.main_window.show_error(str(e)) |
|
|
self.show_error(str(e)) |
|
|
return |
|
|
return |
|
|
# use ConfirmTxDialog |
|
|
# use ConfirmTxDialog |
|
|
# we need to know the fee before we broadcast, because the txid is required |
|
|
# we need to know the fee before we broadcast, because the txid is required |
|
|