tdisable locktime until keepkey firmware is updated - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit b02ce2d02caa2001d1b54b021351615426222017 DIR parent cb81ef6f34384bedf74cc93785961d5846f4881b HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 9 Jul 2017 21:06:21 +0200 disable locktime until keepkey firmware is updated Diffstat: M lib/wallet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -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