electrum

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

commit 6fc6d1ec7df170df85fde830f2fec170016f5aa1
parent 8cc8f8a5e1fe2313163de53a0c4590c4a1b250a9
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 19 Apr 2017 11:55:31 +0200

timelock tx to current height. see #2349

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -853,7 +853,9 @@ class Abstract_Wallet(PrintError): # Sort the inputs and outputs deterministically 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) return tx