mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix default sequence number in ledger plugin
This commit is contained in:
parent
9ab4f1e42e
commit
7617fbf0ff
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ class Ledger_KeyStore(Hardware_KeyStore):
|
|||
self.give_error("No matching x_key for sign_transaction") # should never happen
|
||||
|
||||
redeemScript = Transaction.get_preimage_script(txin)
|
||||
inputs.append([txin['prev_tx'].raw, txin['prevout_n'], redeemScript, txin['prevout_hash'], signingPos, txin.get('sequence', 0xffffffff) ])
|
||||
inputs.append([txin['prev_tx'].raw, txin['prevout_n'], redeemScript, txin['prevout_hash'], signingPos, txin.get('sequence', 0xffffffff - 1) ])
|
||||
inputsPaths.append(hwAddress)
|
||||
pubKeys.append(pubkeys)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue