1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

wallet/signing: typo - hex instead of magic number

This commit is contained in:
Tomas Susanka 2017-11-20 12:44:47 +01:00
parent f56d39a447
commit 1d97077343

View File

@ -110,7 +110,7 @@ def sanitize_tx_input(tx: TransactionType) -> TxInputType:
if txi.script_type is None:
txi.script_type = InputScriptType.SPENDADDRESS
if txi.sequence is None:
txi.sequence = 4294967295
txi.sequence = 0xffffffff
return txi