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

fix compute form

This commit is contained in:
Bogdan Fazakas 2022-05-02 11:15:50 +03:00
parent e23e4b6b97
commit e8fc728523
2 changed files with 9 additions and 1 deletions

View File

@ -92,6 +92,10 @@ export default function FormStartCompute({
}
useEffect(() => {
console.log('values.algorithm', values.algorithm)
console.log('accountId', accountId)
console.log('isConsumable', isConsumable)
if (!values.algorithm || !accountId || !isConsumable) return
async function fetchAlgorithmAssetExtended() {
const algorithmAsset = getAlgorithmAsset(values.algorithm)

View File

@ -152,6 +152,7 @@ export default function Compute({
computeEnv?.id,
validUntil
)
console.log('datasetPriceAndFees price and fees', datasetPriceAndFees)
if (!datasetPriceAndFees) {
setError('Error setting dataset price and fees!')
toast.error('Error setting dataset price and fees!')
@ -185,6 +186,7 @@ export default function Compute({
toast.error('Error setting algorithm price and fees!')
return
}
console.log('algo price and fees', algorithmOrderPriceAndFees)
setAlgoOrderPriceAndFees(algorithmOrderPriceAndFees)
setIsRequestingAlgoOrderPrice(false)
}
@ -199,6 +201,7 @@ export default function Compute({
}, [asset?.accessDetails])
useEffect(() => {
console.log('selcted algo', selectedAlgorithmAsset)
if (!selectedAlgorithmAsset?.accessDetails || !accountId) return
setIsConsumablePrice(selectedAlgorithmAsset?.accessDetails?.isPurchasable)
@ -208,6 +211,7 @@ export default function Compute({
)
async function initSelectedAlgo() {
console.log('selcted algo', selectedAlgorithmAsset)
await checkAssetDTBalance(selectedAlgorithmAsset)
await initPriceAndFees()
}
@ -512,7 +516,7 @@ export default function Compute({
)}
// lazy comment when removing pricingStepText
stepText={computeStatusText}
isConsumable={isConsumable}
isConsumable={isConsumablePrice}
consumableFeedback={consumableFeedback}
datasetOrderPriceAndFees={datasetOrderPriceAndFees}
algoOrderPriceAndFees={algoOrderPriceAndFees}