electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 4934ae3cd913bc6b86affdb3f8055a4ce060c5bf
parent b522c4403e1fd176f62e91012d4490c318cedee9
Author: ThomasV <thomasv@electrum.org>
Date:   Tue, 27 Jun 2017 11:00:14 +0200

follow-up previous commit

Diffstat:
Mplugins/trezor/plugin.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py @@ -56,7 +56,7 @@ class TrezorCompatibleKeyStore(Hardware_KeyStore): 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']: + for x_pubkey in x_pubkeys: if not is_xpubkey(x_pubkey): continue xpub, s = parse_xpubkey(x_pubkey)