mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 08:21:27 +00:00
Fix for tx.inputs break
This commit is contained in:
parent
91d0504f31
commit
43fd49aa8f
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class TrezorCompatibleWallet(BIP44_Wallet):
|
|||
prev_tx = {}
|
||||
# path of the xpubs that are involved
|
||||
xpub_path = {}
|
||||
for txin in tx.inputs:
|
||||
for txin in tx.inputs():
|
||||
tx_hash = txin['prevout_hash']
|
||||
|
||||
ptx = self.transactions.get(tx_hash)
|
||||
|
|
Loading…
Add table
Reference in a new issue