URI: 
       tfix #2315 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e80ce35a1d1d623295735a0075110e36304fa44f
   DIR parent 95e0e238690f3bd1b3efdac53e222b38aef0cbf8
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 20 Mar 2017 06:34:37 +0100
       
       fix #2315
       
       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@@ -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)