Skip to content

Commit

Permalink
Export CKDPriv (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
futpib authored Jul 22, 2022
1 parent fc92037 commit 6313ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getMasterKeyFromSeed = (seed: Hex): Keys => {
};
};

const CKDPriv = ({ key, chainCode }: Keys, index: number): Keys => {
export const CKDPriv = ({ key, chainCode }: Keys, index: number): Keys => {
const indexBuffer = Buffer.allocUnsafe(4);
indexBuffer.writeUInt32BE(index, 0);

Expand Down

0 comments on commit 6313ad2

Please sign in to comment.