electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit b02ce2d02caa2001d1b54b021351615426222017
parent cb81ef6f34384bedf74cc93785961d5846f4881b
Author: ThomasV <thomasv@electrum.org>
Date:   Sun,  9 Jul 2017 21:06:21 +0200

disable locktime until keepkey firmware is updated

Diffstat:
Mlib/wallet.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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