mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
fix ledger signing issue
This commit is contained in:
parent
963dcf0c6b
commit
78e9a84c2f
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ class BTChipWallet(BIP44_Wallet):
|
|||
pin = ""
|
||||
rawTx = tx.serialize()
|
||||
# Fetch inputs of the transaction to sign
|
||||
for txinput in tx.inputs:
|
||||
for txinput in tx.inputs():
|
||||
if ('is_coinbase' in txinput and txinput['is_coinbase']):
|
||||
self.give_error("Coinbase not supported") # should never happen
|
||||
inputs.append([ self.transactions[txinput['prevout_hash']].raw,
|
||||
|
|
Loading…
Add table
Reference in a new issue