From 6d90c9784cc11962f5b734e61da40871c31f91b8 Mon Sep 17 00:00:00 2001 From: Rich Morgan Date: Fri, 16 May 2014 01:27:49 -0400 Subject: [PATCH] Removed extra error handler calls --- app/code/community/Bitpay/Bitcoins/Model/PaymentMethod.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/code/community/Bitpay/Bitcoins/Model/PaymentMethod.php b/app/code/community/Bitpay/Bitcoins/Model/PaymentMethod.php index 571759b..08ce5ae 100644 --- a/app/code/community/Bitpay/Bitcoins/Model/PaymentMethod.php +++ b/app/code/community/Bitpay/Bitcoins/Model/PaymentMethod.php @@ -310,8 +310,6 @@ class Bitpay_Bitcoins_Model_PaymentMethod extends Mage_Payment_Model_Method_Abst $hash = base64_encode(hash_hmac('sha256', $description, $quoteId)); $hash = substr($hash, 0, 30); // fit it in posData maxlen - Mage::log("quote $quoteId descr $description hash $hash", NULL, 'bitpay.log'); - return $hash; }