From 1e88d573d3e0c0787ec3c963a03fd3374ca8acc7 Mon Sep 17 00:00:00 2001 From: CounterFire2023 <136581895+CounterFire2023@users.noreply.github.com> Date: Thu, 4 Jul 2024 05:34:38 +0800 Subject: [PATCH] fix bug: error price for sell --- src/components/Dialogs/sellDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dialogs/sellDialog.vue b/src/components/Dialogs/sellDialog.vue index bf2e3c4..78c53eb 100644 --- a/src/components/Dialogs/sellDialog.vue +++ b/src/components/Dialogs/sellDialog.vue @@ -183,7 +183,7 @@ const sellConfirm = async () => { contractAddress: props.sellDataArr.contract_address, tokenId: props.sellDataArr.token_id, currencyAddress: currency, - currencyAmount: ethers.utils.parseEther(totalPrice(priceValue.value)).toString(), + currencyAmount: ethers.utils.parseEther(priceValue.value).toString(), orderExpiry: orderData, }; console.log(data)