URI: 
       tadd before_send hook - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 5331fc1a246e6a6441e9c827d12a587e5605d7ef
   DIR parent 2843d7a148a3103a6b7a8399bb67ea7a1305b9e9
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Wed, 12 Nov 2014 20:53:54 +0100
       
       add before_send hook
       
       Diffstat:
         M gui/qt/main_window.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -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: