From e7e8c994fdd3edeecdcb10df6bc19a244b10690b Mon Sep 17 00:00:00 2001 From: zhl Date: Thu, 8 Jun 2023 19:29:59 +0800 Subject: [PATCH] =?UTF-8?q?fix::minter=20nft=20=E5=8F=82=E6=95=B0=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Data/js/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Data/js/main.js b/Data/js/main.js index 5914807..b163cec 100644 --- a/Data/js/main.js +++ b/Data/js/main.js @@ -226,13 +226,13 @@ function mintNFT(funId, address, tokenIds, startTime, saltNonce, signature) { tokenIds = JSON.parse(tokenIds); promiseCb( funId, - jc.wallet.jcStandard.mintNFT( + jc.wallet.jcStandard.mintNFT({ address, tokenIds, startTime, saltNonce, - signature - ) + signature, + }) ); } // ======= end of interact with contract =======