mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
fix xpub in trezor plugin (fingerprint and child number should be big endian)
This commit is contained in:
parent
2afe4e30f7
commit
15f6a6a369
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue