root 5 years ago
parent
commit
a3e73893db
2 changed files with 1 additions and 2 deletions
  1. 1 1
      app/Http/Controllers/OrderController.php
  2. 0 1
      library/BitpayX.php

+ 1 - 1
app/Http/Controllers/OrderController.php

@@ -112,7 +112,7 @@ class OrderController extends Controller
             ->where('status', 0)
             ->first();
         if (!$order) {
-            abort(500, '订单不存在或支付');
+            abort(500, '订单不存在或支付');
         }
         switch ($method) {
             // return type => 0: QRCode / 1: URL

+ 0 - 1
library/BitpayX.php

@@ -9,7 +9,6 @@ class BitpayX {
 	 * @param merKey	签名密钥
 	 */
 	public function __construct($bitpayxAppSecret) {
-		var_dump('123');exit;
 		$this->bitpayxAppSecret = $bitpayxAppSecret;
 		$this->bitpayxGatewayUri = 'https://api.mugglepay.com/v1/';
 	}