This commit is contained in:
aozhiwei 2022-03-28 20:25:17 +08:00
parent 6a18603e34
commit 370ec39a2e
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ class WalletController extends BaseController {
myself()->_rspErr(0, 'not found');
return;
}
if ($row['state'] == 2) {
if ($row['state'] == 1) {
myself()->_rspErr(2, 'processing');
return;
}

View File

@ -13,7 +13,7 @@ class Transfer extends BaseModel {
public static function find($txHash)
{
$row = SqlHelper::ormSelectOne(
myself()->_getSelfMysql(),
myself()->_getMarketMysql(),
't_transfer',
array(
'txhash' => $txHash,