From 9f798ef2c3001627c598a5ca9cb18ad3be06af7a Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Tue, 3 Jun 2014 21:01:16 +1000 Subject: [PATCH] HDWallet: adds missing hd declaration Only a problem if "use strict" is enforced --- src/hdnode.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hdnode.js b/src/hdnode.js index 14e3158..158df49 100644 --- a/src/hdnode.js +++ b/src/hdnode.js @@ -243,6 +243,7 @@ HDNode.prototype.derive = function(index) { } // Private parent key -> private child key + var hd if (this.privKey) { // ki = parse256(IL) + kpar (mod n) var ki = pIL.add(this.privKey.D).mod(ecparams.getN())