This commit is contained in:
Matias Alejo Garcia 2014-06-09 18:05:39 -03:00
parent 8e8bf1fb84
commit 4b95002d47
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ WalletFactory.prototype.create = function(opts) {
(opts.privateKey ? ' USING PrivateKey: ' + opts.privateKey.getId() : ' NEW PrivateKey')
);
opts.privateKey = opts.privateKey || new PrivateKey({ retworkName: this.networkName });
opts.privateKey = opts.privateKey || new PrivateKey({ networkName: this.networkName });
var requiredCopayers = opts.requiredCopayers || this.walletDefaults.requiredCopayers;
var totalCopayers = opts.totalCopayers || this.walletDefaults.totalCopayers;