Skip to content

Commit 7d25fe6

Browse files
fix bip32 link (trezor#108)
1 parent e3b8830 commit 7d25fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mnemonic/mnemonic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def to_hd_master_key(seed: bytes, testnet: bool = False) -> str:
239239
# Compute HMAC-SHA512 of seed
240240
seed = hmac.new(b"Bitcoin seed", seed, digestmod=hashlib.sha512).digest()
241241

242-
# Serialization format can be found at: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#Serialization_format
242+
# Serialization format can be found at: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#serialization-format
243243
xprv = b"\x04\x88\xad\xe4" # Version for private mainnet
244244
if testnet:
245245
xprv = b"\x04\x35\x83\x94" # Version for private testnet

0 commit comments

Comments
 (0)