From 10b946bd862aa7d84fb678b1d025b28b1f13c77c Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 22 Sep 2014 15:14:04 -0700 Subject: [PATCH] paypro: fix error passing to abide by new flow. see #1410. --- js/models/core/Wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index a57acabac..70b638467 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -1469,7 +1469,7 @@ Wallet.prototype.receivePaymentRequest = function(options, pr, cb) { log.debug('You are currently on this BTC network:', network); log.debug('The server sent you a message:', memo); - return cb(ntxid, merchantData); + return cb(null, ntxid, merchantData); }); };