|
@ -423,6 +423,11 @@ WalletService.prototype._addCopayerToWallet = function(wallet, opts, cb) { |
|
|
if (err) return cb(err); |
|
|
if (err) return cb(err); |
|
|
if (res) return cb(Errors.COPAYER_REGISTERED); |
|
|
if (res) return cb(Errors.COPAYER_REGISTERED); |
|
|
|
|
|
|
|
|
|
|
|
if (opts.dryRun) return cb(null, { |
|
|
|
|
|
copayerId: null, |
|
|
|
|
|
wallet: wallet |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
wallet.addCopayer(copayer); |
|
|
wallet.addCopayer(copayer); |
|
|
self.storage.storeWalletAndUpdateCopayersLookup(wallet, function(err) { |
|
|
self.storage.storeWalletAndUpdateCopayersLookup(wallet, function(err) { |
|
|
if (err) return cb(err); |
|
|
if (err) return cb(err); |
|
|