Skip to content

Commit

Permalink
fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Jan 9, 2023
1 parent ae89457 commit 83e7076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erdpy/wallet/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def bip39seed_to_master_key(seed):
def bip39seed_to_secret_key(seed, account_index=0):
key, chain_code = bip39seed_to_master_key(seed)

for segment in MULTIVERSX_DERIVATION_PATH + [account_index]:
for segment in BIP39_WALLET_DERIVATION_PATH + [account_index]:
key, chain_code = _ckd_priv(key, chain_code, segment + HARDENED_OFFSET)

return key
Expand Down

0 comments on commit 83e7076

Please sign in to comment.