We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b8830 commit 7d25fe6Copy full SHA for 7d25fe6
src/mnemonic/mnemonic.py
@@ -239,7 +239,7 @@ def to_hd_master_key(seed: bytes, testnet: bool = False) -> str:
239
# Compute HMAC-SHA512 of seed
240
seed = hmac.new(b"Bitcoin seed", seed, digestmod=hashlib.sha512).digest()
241
242
- # Serialization format can be found at: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#Serialization_format
+ # Serialization format can be found at: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#serialization-format
243
xprv = b"\x04\x88\xad\xe4" # Version for private mainnet
244
if testnet:
245
xprv = b"\x04\x35\x83\x94" # Version for private testnet
0 commit comments