disable locktime until keepkey firmware is updated

This commit is contained in:
ThomasV 2017-07-09 21:06:21 +02:00
parent cb81ef6f34
commit b02ce2d02c
1 changed files with 2 additions and 1 deletions

View File

@ -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