Skip to content

Commit

Permalink
Fix masternode payout spend (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto authored Dec 19, 2024
1 parent b99e959 commit 5677d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum_dash/plugins/trezor/trezor.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def tx_inputs(self, tx: Transaction, *, for_sig=False, keystore: 'TrezorKeyStore
if txin.script_sig.startswith(b"\xc4") and txin.nsequence == 0xffffffff:
prev_index = 1
else:
prev_index = txin.nsequence
prev_index = txin.prevout.out_idx
else:
if for_sig:
assert isinstance(tx, PartialTransaction)
Expand Down

0 comments on commit 5677d37

Please sign in to comment.