electrum

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

commit e80ce35a1d1d623295735a0075110e36304fa44f
parent 95e0e238690f3bd1b3efdac53e222b38aef0cbf8
Author: ThomasV <thomasv@electrum.org>
Date:   Mon, 20 Mar 2017 06:34:37 +0100

fix #2315

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 @@ -275,7 +275,7 @@ class TrezorCompatiblePlugin(HW_PluginBase): if is_xpubkey(x_pubkey): xpub, s = parse_xpubkey(x_pubkey) else: - xpub = xpub_from_pubkey(x_pubkey.decode('hex')) + xpub = xpub_from_pubkey(0, x_pubkey.decode('hex')) s = [] node = self.ckd_public.deserialize(xpub) return self.types.HDNodePathType(node=node, address_n=s)