URI: 
       ttimelock tx to current height. see #2349 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6fc6d1ec7df170df85fde830f2fec170016f5aa1
   DIR parent 8cc8f8a5e1fe2313163de53a0c4590c4a1b250a9
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 19 Apr 2017 11:55:31 +0200
       
       ttimelock tx to current height. see #2349
       
       Diffstat:
         M lib/wallet.py                       |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -853,7 +853,9 @@ class Abstract_Wallet(PrintError):
        
                # Sort the inputs and outputs deterministically
                tx.BIP_LI01_sort()
       -
       +        # Timelock tx to current height.
       +        # Disabled until hardware wallets support it
       +        # tx.locktime = self.get_local_height()
                run_hook('make_unsigned_transaction', self, tx)
                return tx