From 0a1fab8e2a8e25a93e794bd3d8be2eb7435c7bf0 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 8 Sep 2014 17:52:22 -0700 Subject: [PATCH] paypro: fix failing paypro test. --- 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 8b32b6f2e..ce3a64347 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -1696,7 +1696,7 @@ Wallet.prototype.verifyPaymentRequest = function(ntxid) { pr = pr.makePaymentRequest(data); // Verify the signature so we know this is the real request. - var trust = pr.verify(); + var trust = pr.verify(true); if (!trust.verified) { // Signature does not match cert. It may have // been modified by an untrustworthy person.