From 6fc6d1ec7df170df85fde830f2fec170016f5aa1 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 19 Apr 2017 11:55:31 +0200 Subject: [PATCH] timelock tx to current height. see #2349 --- lib/wallet.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index fdc3b3d4..7bd07511 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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