|
@@ -71,13 +71,17 @@ class UserModel extends BaseModel
|
|
|
$info['erc_num'] = '0.00';
|
|
$info['erc_num'] = '0.00';
|
|
|
$info['erc_usdt_num'] = '0.00';
|
|
$info['erc_usdt_num'] = '0.00';
|
|
|
if($memberInfo){
|
|
if($memberInfo){
|
|
|
- $trcNum = UsdtWalletService::make()->getTrxBalance($memberInfo['trc_address'], true);
|
|
|
|
|
|
|
+ $trcNum = 0;
|
|
|
|
|
+// $trcNum = UsdtWalletService::make()->getTrxBalance($memberInfo['trc_address'], true);
|
|
|
$info['trc_num'] = floatval($trcNum);
|
|
$info['trc_num'] = floatval($trcNum);
|
|
|
- $trcUsdtNum = UsdtWalletService::make()->getTrc20Usdt($memberInfo['trc_address'], true);
|
|
|
|
|
|
|
+// $trcUsdtNum = UsdtWalletService::make()->getTrc20Usdt($memberInfo['trc_address'], true);
|
|
|
|
|
+ $trcUsdtNum = 0;
|
|
|
$info['trc_usdt_num'] = floatval($trcUsdtNum);
|
|
$info['trc_usdt_num'] = floatval($trcUsdtNum);
|
|
|
- $ercNum = UsdtWalletService::make()->getErcBalance($memberInfo['erc_hexaddress'], true);
|
|
|
|
|
|
|
+ $ercNum = 0;
|
|
|
|
|
+// $ercNum = UsdtWalletService::make()->getErcBalance($memberInfo['erc_hexaddress'], true);
|
|
|
$info['erc_num'] = floatval($ercNum);
|
|
$info['erc_num'] = floatval($ercNum);
|
|
|
- $ercUsdtNum = UsdtWalletService::make()->getErc20Usdt($memberInfo['erc_hexaddress'], true);
|
|
|
|
|
|
|
+ $ercUsdtNum = 0;
|
|
|
|
|
+// $ercUsdtNum = UsdtWalletService::make()->getErc20Usdt($memberInfo['erc_hexaddress'], true);
|
|
|
$info['erc_usdt_num'] = floatval($ercUsdtNum);
|
|
$info['erc_usdt_num'] = floatval($ercUsdtNum);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|