This commit is contained in:
aozhiwei 2022-11-09 21:07:13 +08:00
parent 03bc96de72
commit 9e8ca40c8f

View File

@ -26,7 +26,8 @@ class Transaction extends BaseModel {
myself()->_getSelfMysql(), myself()->_getSelfMysql(),
't_transaction', 't_transaction',
array( array(
'account_id' => myself()->_getAccountId() 'account_id' => myself()->_getAccountId(),
'client_confirmed' => 1
) )
); );
return $rows; return $rows;
@ -40,7 +41,6 @@ class Transaction extends BaseModel {
array( array(
'account_id' => myself()->_getAccountId(), 'account_id' => myself()->_getAccountId(),
'trans_id' => $transId, 'trans_id' => $transId,
'client_confirmed' => 1
) )
); );
return $row; return $row;