fix xpub in trezor plugin (fingerprint and child number should be big endian)

This commit is contained in:
ThomasV 2014-08-20 21:18:16 +02:00
parent 2afe4e30f7
commit 15f6a6a369

View file

@ -172,7 +172,7 @@ class TrezorWallet(NewWallet):
return self.mpk return self.mpk
def i4b(self, x): def i4b(self, x):
return pack('I', x) return pack('>I', x)
def add_keypairs(self, tx, keypairs, password): def add_keypairs(self, tx, keypairs, password):
#do nothing - no priv keys available #do nothing - no priv keys available