From de85b56e0aeac52463530dab3e54f1a35128ee3b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 11 Oct 2017 11:45:52 +0200 Subject: [PATCH] re-enable locktime --- lib/wallet.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 0dfca00d4..b59fb2b40 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -856,8 +856,7 @@ class Abstract_Wallet(PrintError): # Sort the inputs and outputs deterministically tx.BIP_LI01_sort() # Timelock tx to current height. - # Disabled until keepkey firmware update - # tx.locktime = self.get_local_height() + tx.locktime = self.get_local_height() run_hook('make_unsigned_transaction', self, tx) return tx