From 1995c56b7f1b11045eead75e2436b8615332496d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 14 Nov 2014 11:26:42 +0100 Subject: [PATCH] before_send: fix logic --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e49e178e4..3d20813cf 100644 --- a/gui/qt/main_window.py +++ b/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: