|
|
@ -331,7 +331,6 @@ WalletService.prototype._notify = function(type, data, opts, cb) { |
|
|
|
* @param {string} opts.xPubKey - Extended Public Key for this copayer. |
|
|
|
* @param {string} opts.requestPubKey - Public Key used to check requests from this copayer. |
|
|
|
* @param {string} opts.copayerSignature - S(name|xPubKey|requestPubKey). Used by other copayers to verify the that the copayer joining knows the wallet secret. |
|
|
|
* @param {string} opts.isTemporaryRequestKey - requestPubKey will be marked as 'temporary' (only used for Copay migration) |
|
|
|
*/ |
|
|
|
WalletService.prototype.joinWallet = function(opts, cb) { |
|
|
|
var self = this; |
|
|
@ -366,7 +365,6 @@ WalletService.prototype.joinWallet = function(opts, cb) { |
|
|
|
xPubKey: opts.xPubKey, |
|
|
|
requestPubKey: opts.requestPubKey, |
|
|
|
signature: opts.copayerSignature, |
|
|
|
isTemporaryRequestKey: !!opts.isTemporaryRequestKey, |
|
|
|
}); |
|
|
|
|
|
|
|
self.storage.fetchCopayerLookup(copayer.id, function(err, res) { |
|
|
|