Browse Source

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

283
ThomasV 11 years ago
parent
commit
15f6a6a369
  1. 2
      plugins/trezor.py

2
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

Loading…
Cancel
Save