From 413098013325e03806c5677f6b7c0f9779b95596 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 31 Jul 2014 17:15:19 -0700 Subject: [PATCH] paypro: remove debug logs again. --- js/models/core/Wallet.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index 738ca7951..d7e99ff3f 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -932,9 +932,6 @@ Wallet.prototype.receivePaymentRequest = function(options, pr, cb) { total: bignum('0', 10).toString(10) }; - console.log('receivePaymentRequest'); - console.log(merchantData); - return this.getUnspent(function(err, unspent) { if (options.fetch) { self.createPaymentTxSync(options, merchantData, unspent); @@ -1107,9 +1104,6 @@ Wallet.prototype.createPaymentTxSync = function(options, merchantData, unspent) var signed = b.sign(keys); } - console.log('createPaymentTxSync:1'); - console.log(merchantData); - if (typeof merchantData.total === 'string') { merchantData.total = bignum(merchantData.total, 10); } @@ -1150,9 +1144,6 @@ Wallet.prototype.createPaymentTxSync = function(options, merchantData, unspent) merchantData.total = merchantData.total.toString(10); - console.log('createPaymentTxSync:2'); - console.log(merchantData); - if (options.fetch) return; this.log('');