diff --git a/uc_stripe.module b/uc_stripe.module
index 2e5b03e..2383ca2 100644
--- a/uc_stripe.module
+++ b/uc_stripe.module
@@ -686,24 +686,6 @@ function uc_stripe_charge($order_id, $amount, $data) {
 
     return $result;
   }
-
-  //  Default / Fallback procedure to fail if the above conditions aren't met
-
-  $result = array(
-    'success' => FALSE,
-    'comment' => "Stripe Gateway Error",
-    'message' => "Stripe Gateway Error",
-    'uid' => $user->uid,
-    'order_id' => $order_id,
-  );
-
-  uc_order_comment_save($order_id, $user->uid, $result['message'], 'admin');
-
-  watchdog('uc_stripe', 'Stripe gateway error for order @order_id', array('order_id' => $order_id));
-
-  $_SESSION['stripe']['payment_failed'] = TRUE;
-
-  return $result;
 }
 
 /**
