From 8f43c6ea16e744530a44bc25ad13589a75bad75e Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 4 Nov 2022 14:00:35 +0800 Subject: [PATCH] 1 --- webapp/controller/BlockChainController.class.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/controller/BlockChainController.class.php b/webapp/controller/BlockChainController.class.php index 0492c8d9..cb4df0ca 100644 --- a/webapp/controller/BlockChainController.class.php +++ b/webapp/controller/BlockChainController.class.php @@ -150,10 +150,10 @@ class BlockChainController extends BaseAuthedController { ), array( 'action' => Transaction::EVOLVE_721_ACTION_TYPE, - 'tokenId' => '', + 'tokenId' => $nft1['token_id'], 'itemType' => $type, - 'itemUniId' => 0, - 'itemId' => 0 + 'itemUniId' => $nft1['hero_uniid'], + 'itemId' => $nft1['hero_id'] ) ); } @@ -179,10 +179,10 @@ class BlockChainController extends BaseAuthedController { ), array( 'action' => Transaction::EVOLVE_721_ACTION_TYPE, - 'tokenId' => '', + 'tokenId' => $nft1['token_id'], 'itemType' => $type, - 'itemUniId' => 0, - 'itemId' => 0 + 'itemUniId' => $nft1['gun_uniid'], + 'itemId' => $nft1['gun_id'] ) ); }