timelock tx to current height. see #2349

This commit is contained in:
ThomasV 2017-04-19 11:55:31 +02:00
parent 8cc8f8a5e1
commit 6fc6d1ec7d
1 changed files with 3 additions and 1 deletions

View File

@ -853,7 +853,9 @@ class Abstract_Wallet(PrintError):
# Sort the inputs and outputs deterministically # Sort the inputs and outputs deterministically
tx.BIP_LI01_sort() 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) run_hook('make_unsigned_transaction', self, tx)
return tx return tx