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
1 changed files with 1 additions and 1 deletions

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