Browse Source

Trezor plugin: Sort multisig pubkeys before signing

See issue #2550
2.9.x
Mqrius 7 years ago
committed by GitHub
parent
commit
a4e49c2d8b
  1. 1
      plugins/trezor/plugin.py

1
plugins/trezor/plugin.py

@ -53,6 +53,7 @@ class TrezorCompatibleKeyStore(Hardware_KeyStore):
# path of the xpubs that are involved
xpub_path = {}
for txin in tx.inputs():
pubkeys, x_pubkeys = tx.get_sorted_pubkeys(txin)
tx_hash = txin['prevout_hash']
prev_tx[tx_hash] = txin['prev_tx']
for x_pubkey in txin['x_pubkeys']:

Loading…
Cancel
Save