diff --git a/app/common/logic/PayNotifyLogic.php b/app/common/logic/PayNotifyLogic.php
index 57381099b..e78e5b790 100644
--- a/app/common/logic/PayNotifyLogic.php
+++ b/app/common/logic/PayNotifyLogic.php
@@ -177,7 +177,8 @@ class PayNotifyLogic extends BaseLogic
             return true;
         }
         bcscale(2);
-        $user->now_money = bcadd($user->now_money, $price, 2);
+//        $user->now_money = bcadd($user->now_money, $price, 2);//v.1
+        $user->purchase_funds = bcadd($user->purchase_funds, $price, 2);
         $user->total_recharge_amount = bcadd($user->total_recharge_amount, $price, 2);
         $user->save();