From 4b95002d479b947b76cebd22d68d923f34792bf3 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Mon, 9 Jun 2014 18:05:39 -0300 Subject: [PATCH] fix type --- js/models/core/WalletFactory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/core/WalletFactory.js b/js/models/core/WalletFactory.js index a53c3864e..8cca0f607 100644 --- a/js/models/core/WalletFactory.js +++ b/js/models/core/WalletFactory.js @@ -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;