Skip to content

Commit 556fdd9

Browse files
committedFeb 14, 2024
Throw an error when attempting to derive from a master path from a non-master node (#4551).
1 parent 7f14bde commit 556fdd9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src.ts/wallet/hdwallet.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,12 @@ type HDNodeLike<T> = { depth: number, deriveChild: (i: number) => T };
8787
function derivePath<T extends HDNodeLike<T>>(node: T, path: string): T {
8888
const components = path.split("/");
8989

90-
assertArgument(components.length > 0 && (components[0] === "m" || node.depth > 0), "invalid path", "path", path);
90+
assertArgument(components.length > 0, "invalid path", "path", path);
9191

92-
if (components[0] === "m") { components.shift(); }
92+
if (components[0] === "m") {
93+
assertArgument(node.depth === 0, `cannot derive root path (i.e. path starting with "m/") for a node at non-zero depth ${ node.depth }`, "path", path);
94+
components.shift();
95+
}
9396

9497
let result: T = node;
9598
for (let i = 0; i < components.length; i++) {

0 commit comments

Comments
 (0)
Please sign in to comment.