HDNode: removed unused variable

This commit is contained in:
Daniel Cousens 2014-06-04 13:57:44 +10:00
parent 9f798ef2c3
commit 15cc03a57f

View file

@ -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'))
}