trying to fix tests

This commit is contained in:
Manuel Araoz 2014-06-12 14:27:53 -03:00
commit 322a793b62
5 changed files with 35 additions and 52 deletions

View file

@ -58,7 +58,8 @@ PrivateKey.prototype._getHK = function(path) {
if (typeof path === 'undefined') {
return this.bip;
}
return this.bip.derive(path);
var ret = this.bip.derive(path);
return ret;
};
PrivateKey.prototype.getForPaths = function(paths) {