Browse Source

fix: openalias resolution unnecessarily blocks gui for some payto

3.0.x
SomberNight 7 years ago
parent
commit
f492021195
  1. 1
      gui/qt/main_window.py
  2. 3
      gui/qt/paytoedit.py

1
gui/qt/main_window.py

@ -606,6 +606,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
self.need_update.clear()
self.update_wallet()
# resolve aliases
# FIXME this is a blocking network call that has a timeout of 5 sec
self.payto_e.resolve()
# update fee
if self.require_fee_update:

3
gui/qt/paytoedit.py

@ -278,6 +278,9 @@ class PayToEdit(ScanQRTextEdit):
self.previous_payto = key
if not (('.' in key) and (not '<' in key) and (not ' ' in key)):
return
parts = key.split(sep=',') # assuming single line
if parts and len(parts) > 0 and bitcoin.is_address(parts[0]):
return
try:
data = self.win.contacts.resolve(key)
except:

Loading…
Cancel
Save