fix: get_seed

This commit is contained in:
ThomasV 2014-05-04 19:52:47 +02:00
parent c9fc6275ab
commit 430c7aa92e
1 changed files with 1 additions and 1 deletions

View File

@ -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)