paypro: fix error passing to abide by new flow. see #1410.

This commit is contained in:
Christopher Jeffrey 2014-09-22 15:14:04 -07:00
parent f3ed336278
commit 10b946bd86
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});
};