From 15cc03a57f831e3a9a7139a5f36fb16f6658846d Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Wed, 4 Jun 2014 13:57:44 +1000 Subject: [PATCH] HDNode: removed unused variable --- src/hdnode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdnode.js b/src/hdnode.js index 158df49..005b206 100644 --- a/src/hdnode.js +++ b/src/hdnode.js @@ -132,7 +132,7 @@ HDNode.fromBuffer = function(buffer) { return hd } -HDNode.fromHex = function(hex, isPrivate) { +HDNode.fromHex = function(hex) { return HDNode.fromBuffer(new Buffer(hex, 'hex')) }