This commit is contained in:
aozhiwei 2022-11-04 13:03:37 +08:00
parent 4d9a8b03f7
commit d5a87bf84a

View File

@ -199,6 +199,14 @@ class BlockChainController extends BaseAuthedController {
{ {
$tokenId1 = getReqVal('token_id1', ''); $tokenId1 = getReqVal('token_id1', '');
$tokenIds = explode('|', getReqVal('token_ids', '')); $tokenIds = explode('|', getReqVal('token_ids', ''));
if (in_array($tokenId1, $tokenIds) || count($tokenIds) <= 0) {
myself()->_rspErr(1, 'token_ids paramater error');
return;
}
} }
public function mintShardBatchUser() public function mintShardBatchUser()