From 5331fc1a246e6a6441e9c827d12a587e5605d7ef Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 12 Nov 2014 20:53:54 +0100 Subject: [PATCH] add before_send hook --- 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 2683ef7e..2dc45b25 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1086,7 +1086,7 @@ class ElectrumWindow(QMainWindow): if not r: return outputs, fee, label, coins = r - + run_hook('before_send') try: tx = self.wallet.make_unsigned_transaction(outputs, fee, None, coins = coins) if not tx: