mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix ledger signing. fix dbb 2fa. follow-up partial txn ser change (#4405)
This commit is contained in:
parent
a98e833897
commit
529cb3602c
2 changed files with 2 additions and 2 deletions
|
@ -559,7 +559,7 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
|
|||
# expected serialization though, so we leave it here until we activate it.
|
||||
return '00' + push_script(Transaction.get_preimage_script(txin))
|
||||
raise Exception("unsupported type %s" % txin['type'])
|
||||
tx_dbb_serialized = CustomTXSerialization(tx.serialize()).serialize()
|
||||
tx_dbb_serialized = CustomTXSerialization(tx.serialize()).serialize_to_network()
|
||||
else:
|
||||
# We only need this for the signing echo / verification.
|
||||
tx_dbb_serialized = None
|
||||
|
|
|
@ -429,7 +429,7 @@ class Ledger_KeyStore(Hardware_KeyStore):
|
|||
# Sign all inputs
|
||||
firstTransaction = True
|
||||
inputIndex = 0
|
||||
rawTx = tx.serialize()
|
||||
rawTx = tx.serialize_to_network()
|
||||
self.get_client().enableAlternate2fa(False)
|
||||
if segwitTransaction:
|
||||
self.get_client().startUntrustedTransaction(True, inputIndex,
|
||||
|
|
Loading…
Add table
Reference in a new issue