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

remove logs

This commit is contained in:
Bogdan Fazakas 2022-05-26 08:38:38 +03:00
parent 565e7bfa31
commit aec4568412
3 changed files with 0 additions and 4 deletions

View File

@ -176,8 +176,6 @@ function getAccessDetailsFromTokenPrice(
const order = tokenPrice.orders[0]
const reusedOrder =
order && order.reuses && order.reuses.length > 0 ? order.reuses[0] : null
console.log('order', order)
console.log('reusedOrder', reusedOrder)
// asset is owned if there is an order and asset has timeout 0 (forever) or if the condition is valid
accessDetails.isOwned =
timeout === 0 || Date.now() / 1000 - order.createdTimestamp < timeout

View File

@ -373,7 +373,6 @@ export default function Compute({
}
LoggerInstance.log('[compute] Starting compute job response: ', response)
setIsPublished(true)
console.log('setRefatchJobs true')
setRefatchJobs(!refatchJobs)
initPriceAndFees()
} catch (error) {

View File

@ -113,7 +113,6 @@ export default function ComputeJobs({
}, [fetchJobs])
useEffect(() => {
console.log('use effect ', refatchJobs)
fetchJobs()
}, [refatchJobs])