commit 15f6a6a369c53bdbc48753acf37c0a138de49ca0
parent 2afe4e30f777ea3d4194e4c9227916def0a432a9
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/trezor.py b/plugins/trezor.py
@@ -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