From b02ce2d02caa2001d1b54b021351615426222017 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 9 Jul 2017 21:06:21 +0200 Subject: [PATCH] disable locktime until keepkey firmware is updated --- lib/wallet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index f32526b3..5e7c0008 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -857,7 +857,8 @@ class Abstract_Wallet(PrintError): # Sort the inputs and outputs deterministically tx.BIP_LI01_sort() # Timelock tx to current height. - tx.locktime = self.get_local_height() + # Disabled until keepkey firmware update + # tx.locktime = self.get_local_height() run_hook('make_unsigned_transaction', self, tx) return tx