This commit is contained in:
aozhiwei 2022-11-07 12:58:28 +08:00
parent 9c959d0095
commit e42a06a8a0

View File

@ -432,6 +432,26 @@ class BlockChainController extends BaseAuthedController {
myself()->_rspErr(101, 'token_id paramater error');
return;
}
$this->internalBcCall(
array(
'c' => 'BcService',
'a' => 'unplugChip',
'account_id' => myself()->_getAccountId(),
'session_id' => myself()->_getSessionId(),
'account' => myself()->_getOpenId(),
'token_id' => $tokenId,
'chip_ids' => implode('|', $chipIds)
),
array(
'action' => Transaction::EVOLVE_CHIP_ACTION_TYPE,
'tokenId' => $tokenId1,
'tokenType' => 0,
'itemUniId' => $nftDb['chip_uniid'],
'itemId' => $nftDb['item_id']
)
);
}
break;
case 2: