1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-31 18:40:56 +00:00

docs(core): fix reference to SLIP-23 in cardano node derivation

[no changelog]
This commit is contained in:
M1nd3r 2024-05-08 13:41:27 +02:00 committed by Petr Sedláček
parent 30b50c6462
commit 2e58a4959f

View File

@ -171,7 +171,7 @@ async def _get_keychain(derivation_type: CardanoDerivationType) -> Keychain:
if mnemonic.is_bip39():
return await _get_keychain_bip39(derivation_type)
else:
# derive the root node via SLIP-0023 https://github.com/satoshilabs/slips/blob/master/slip-0022.md
# derive the root node via SLIP-0023 https://github.com/satoshilabs/slips/blob/master/slip-0023.md
seed = await get_seed()
return Keychain(cardano.from_seed_slip23(seed))