mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix: get_seed
This commit is contained in:
parent
c9fc6275ab
commit
430c7aa92e
1 changed files with 1 additions and 1 deletions
|
@ -1378,7 +1378,7 @@ class NewWallet(Deterministic_Wallet):
|
|||
|
||||
|
||||
def create_master_keys(self, password):
|
||||
xpriv, xpub = bip32_root(self.get_seed(password))
|
||||
xpriv, xpub = bip32_root(mnemonic_to_seed(self.get_seed(password),'').encode('hex'))
|
||||
self.add_master_public_key("m/", xpub)
|
||||
self.add_master_private_key("m/", xpriv, password)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue