mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
fix sequence in trezor plugin (follow-up to d4e8f4be
)
This commit is contained in:
parent
7f2234caed
commit
cb81ef6f34
1 changed files with 1 additions and 3 deletions
|
@ -306,9 +306,7 @@ class TrezorCompatiblePlugin(HW_PluginBase):
|
|||
script_sig = txin['scriptSig'].decode('hex')
|
||||
txinputtype.script_sig = script_sig
|
||||
|
||||
if 'sequence' in txin:
|
||||
sequence = txin['sequence']
|
||||
txinputtype.sequence = sequence
|
||||
txinputtype.sequence = txin.get('sequence', 0xffffffff - 1)
|
||||
|
||||
inputs.append(txinputtype)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue