From 76a6c9dec7ca8f6ed9a997bcf808fc46501ccf9d Mon Sep 17 00:00:00 2001 From: hujiabin Date: Wed, 2 Nov 2022 20:39:53 +0800 Subject: [PATCH] 1 --- webapp/models/Chip.php | 45 ------------------------------------------ 1 file changed, 45 deletions(-) diff --git a/webapp/models/Chip.php b/webapp/models/Chip.php index 23b1bd7d..e58fe8f4 100644 --- a/webapp/models/Chip.php +++ b/webapp/models/Chip.php @@ -30,40 +30,6 @@ class Chip extends BaseModel public static function getChipList($cb) { -// $nft = SqlHelper::ormSelect( -// myself()->_getMarketMysql(), -// 't_nft', -// array( -// 'owner_address' => myself()->_getOpenId(), -// 'token_type' =>Nft::CHIP_TYPE, -// 'deleted' => 0 -// ) -// ); -// foreach ($nft as $nftDb) { -// $row = SqlHelper::ormSelectOne( -// myself()->_getSelfMysql(), -// 't_chip', -// array( -// 'token_id' => $nftDb['token_id'], -// ) -// ); -// if (!$row) { -// $itemMeta = mt\Item::get($nftDb['item_id']); -// if ($itemMeta) { -// self::addChip($nftDb['item_id'], $nftDb['token_id']); -// $row = SqlHelper::ormSelectOne( -// myself()->_getSelfMysql(), -// 't_chip', -// array( -// 'token_id' => $nftDb['token_id'], -// ) -// ); -// } -// } -// if ($row) { -// $cb($row); -// } -// } SqlHelper::ormSelect( myself()->_getSelfMysql(), 't_chip', @@ -83,11 +49,6 @@ class Chip extends BaseModel 'token_id' => $nftDb['token_id'], ) ); - error_log(json_encode( - array( - 'nft___________token_________id'=> $nftDb['token_id'] - ) - )); if (!$row) { $itemMeta = mt\Item::get($nftDb['item_id']); if ($itemMeta) { @@ -100,7 +61,6 @@ class Chip extends BaseModel ) ); } - } if ($row) { $cb($row); @@ -173,11 +133,6 @@ class Chip extends BaseModel public static function addChip($itemId, $tokenId) { - error_log(json_encode( - array( - 'token_____id'=> $tokenId - ) - )); return self::internalAddItem( myself()->_getMysql($tokenId), $itemId,