Browse Source

before_send: fix logic

283
ThomasV 10 years ago
parent
commit
1995c56b7f
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -1082,7 +1082,7 @@ class ElectrumWindow(QMainWindow):
def do_send(self):
if not run_hook('before_send'):
if run_hook('before_send'):
return
r = self.read_send_tab()
if not r:

Loading…
Cancel
Save