Skip to content

Commit

Permalink
fix: ada async method (#6460)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidmorizon authored Jan 8, 2025
1 parent c85bff6 commit 2f85fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/chains/ada/sdkAda/bip32.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function getRootKey(
password: string,
hdCredential: ICoreHdCredentialEncryptHex,
): Promise<Buffer> {
const mnemonic = mnemonicFromEntropy(hdCredential, password);
const mnemonic: string = await mnemonicFromEntropy(hdCredential, password);
const rootKey = await mnemonicToRootKeypair(mnemonic, DERIVATION_SCHEME);
return rootKey;
}
Expand Down

0 comments on commit 2f85fde

Please sign in to comment.