electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 1995c56b7f1b11045eead75e2436b8615332496d
parent b1eb6ebc911f9bbe6d1cd1f06e8dc8804f227bb4
Author: ThomasV <thomasv@gitorious>
Date:   Fri, 14 Nov 2014 11:26:42 +0100

before_send: fix logic

Diffstat:
Mgui/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 @@ -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: