tfix xpub in trezor plugin (fingerprint and child number should be big endian) - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 15f6a6a369c53bdbc48753acf37c0a138de49ca0 DIR parent 2afe4e30f777ea3d4194e4c9227916def0a432a9 HTML Author: ThomasV <thomasv@gitorious> Date: Wed, 20 Aug 2014 21:18:16 +0200 fix xpub in trezor plugin (fingerprint and child number should be big endian) Diffstat: M plugins/trezor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/trezor.py b/plugins/trezor.py t@@ -172,7 +172,7 @@ class TrezorWallet(NewWallet): return self.mpk def i4b(self, x): - return pack('I', x) + return pack('>I', x) def add_keypairs(self, tx, keypairs, password): #do nothing - no priv keys available