1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

adding check on priceDataset

This commit is contained in:
EnzoVezzaro 2022-10-20 08:17:52 -04:00
parent d88b4c9d5d
commit 8c88d512bf

View File

@ -128,7 +128,7 @@ export default function FormStartCompute({
selectedAlgorithmAsset?.accessDetails.price
)
const priceDataset = new Decimal(
hasPreviousOrder
hasPreviousOrder || hasDatatoken
? 0
: datasetOrderPriceAndFees?.price || asset.accessDetails.price
).toDecimalPlaces(MAX_DECIMALS)
@ -144,6 +144,7 @@ export default function FormStartCompute({
const providerFees = providerFeeAmount
? new Decimal(providerFeeAmount).toDecimalPlaces(MAX_DECIMALS)
: new Decimal(0)
const totalPrice = priceDataset
.plus(priceAlgo)
.plus(providerFees)