tfollow-up previous commit - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 4934ae3cd913bc6b86affdb3f8055a4ce060c5bf DIR parent b522c4403e1fd176f62e91012d4490c318cedee9 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 27 Jun 2017 11:00:14 +0200 follow-up previous commit Diffstat: M plugins/trezor/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py t@@ -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)