hd: fix generate.

This commit is contained in:
Christopher Jeffrey 2016-08-29 15:01:10 -07:00
parent 97e0122b8b
commit 17487bfcf6
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -42,8 +42,8 @@ HD.fromBase58 = function fromBase58(xkey) {
* @returns {HDPrivateKey}
*/
HD.generate = function generate(options, network) {
return HDPrivateKey.generate(options, network);
HD.generate = function generate(network) {
return HDPrivateKey.generate(network);
};
/**